Jump to content

Cătălin

Member
  • Posts

    26
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Cătălin

  1. 23 hours ago, Germais said:

    Maybe you forgot to change your settings in dragon_soul_refine_settings.py ?

    Here is mine, I also included my dragon_soul_table.txt because you will need it in order to make it work. By the way, my table is set to never fail on class refine and it also contains lycan bonus. You may want to check the table and set it with your settings.

    Here it is,

    possible_fix.zip

    Hi. Can you upload on another site? I can't download it.

  2. Hi!

    I am using untouched sg files with 40k mainline source and client from this forum. My problem is when i open 2 or more channels, it shows "Online" only on ch1, rest of them shows "..." 

    My ports are default ones: 

    CH1 13000 (13001 core2, 13002 core3)

    CH2 13010 (13011 core2, 13012 core3)

    CH3 13020 (13021 core2, 13022 core3)

  3. Hi. This is my syserr (Client) :

    Spoiler

    0925 21:58:35025 :: Not a valid .WAV file: sound/pc/shaman/general/맞기1.wav
    0925 21:58:35025 :: CSoundManager3D::GetInstance (filename: sound/pc/shaman/general/맞기1.wav)
    0925 21:58:07497 :: Not a valid .WAV file: sound/pc/shaman/general/맞기1.wav
    0925 21:58:07497 :: CSoundManager3D::GetInstance (filename: sound/pc/shaman/general/맞기1.wav)
    0925 21:58:11692 :: Not a valid .WAV file: sound/pc/shaman/general/맞기1.wav
    0925 21:58:11692 :: CSoundManager3D::GetInstance (filename: sound/pc/shaman/general/맞기1.wav)
    0925 21:58:11852 :: Not a valid .WAV file: sound/pc/shaman/general/맞기1.wav
    0925 21:58:11852 :: CSoundManager3D::GetInstance (filename: sound/pc/shaman/general/맞기1.wav)
    0925 21:58:12034 :: Not a valid .WAV file: sound/pc/shaman/general/맞기1.wav
    0925 21:58:12034 :: CSoundManager3D::GetInstance (filename: sound/pc/shaman/general/맞기1.wav)
    0925 21:58:12237 :: Not a valid .WAV file: sound/pc/shaman/general/맞기1.wav
    0925 21:58:12237 :: CSoundManager3D::GetInstance (filename: sound/pc/shaman/general/맞기1.wav)
    0925 21:58:12397 :: Not a valid .WAV file: sound/pc/shaman/general/맞기1.wav
    0925 21:58:12397 :: CSoundManager3D::GetInstance (filename: sound/pc/shaman/general/맞기1.wav)

    I added a .wav file named ''맞기1.wav'' in 'sound/pc/shaman/general/' but no results.

    Hope you can help me.

    Thanks.

     

  4. EDITED: Solved!

    I found a fix here, on this forum from a guy @Kroneees.

    Go to Server source / input_main.cpp

    Search:  CInputMain::AnswerMakeGuild

    Instead of:

    if (ch->GetGold() < 200000)
            ch->ChatPacket(CHAT_TYPE_INFO, "You don't have 200000 yang");
            return;
     
    if (ch->GetLevel() < 40)
            ch->ChatPacket(CHAT_TYPE_INFO, "You don't have 40lv+ ");
            return;

    Add:

    // 200k yang //
    if (ch->GetGold() < 200000)
        {
            ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("<Guild> You don't have 200000 yang."));
            return;
        }
        // 40+ guild //
        if (ch->GetLevel() < 40)
        {
            ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("<Guild> You don't have 40lv."));
            return;
        }

     

    PS: This fix works for me. I hope it will work for you too.

    Good luck!

  5. "when u try change a 2sword hand ( 3 slots )  and u only have 2 slots free you can make the change but the other person cant give u the 2sword hand, because u dont have space in your inventory, but u give to him yours items in inventory"

    This is my bug.

    PS: i have 3 inventory pages.

    EDIT : I found this in syserr (server)

    SYSERR: Sep 23 17:05:13.768030 :: Done: Exchange::Done : Cannot find blank position in inventory GinaAsasina <-> elodia item Lance partizan+9

    EDIT2: Solved!

    I took the code from Here and edited for 3 inventory pages.

    I will put it here if someone needs : 

    This is the hidden content, please

    • Metin2 Dev 3
    • Good 1
    • Love 1
  6. Hi. I got these errors when i tried to open dragon stone inventory.

    Spoiler

    SYSERR: Jul 13 16:14:21.946432 :: RunState: LUA_ERROR: [string "ds"]:1: attempt to call field `give_qualification' (a nil value)
    SYSERR: Jul 13 16:14:21.946532 :: WriteRunningStateToSyserr: LUA_ERROR: quest ds.start click
    SYSERR: Jul 13 16:15:51.938141 :: RunState: LUA_ERROR: [string "ds"]:1: attempt to call field `give_qualification' (a nil value)
    SYSERR: Jul 13 16:15:51.938208 :: WriteRunningStateToSyserr: LUA_ERROR: quest ds.start click
    SYSERR: Jul 13 16:18:33.971328 :: RunState: LUA_ERROR: [string "dragon_soul"]:5: attempt to call field `give_qualification' (a nil value)
    SYSERR: Jul 13 16:18:33.971368 :: WriteRunningStateToSyserr: LUA_ERROR: quest dragon_soul.state_learning letter

    Im using original quest.

×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.