Jump to content
  • 0

Channel1_1 Crash After Make a Guild


piktorvik

Question

Hi everyone!

I found a problem with guild making.

spacer.png

 

If someone wants to make a guild, and if he enter the guild name and press OK the channel1_1 will crash.

Channel1_1 syserr is empty.

 

DB Syserr: SYSERR: Aug 20 21:03:36.172297 :: Process: FDWATCH: peer null in event: ident 22 

 

I tried debuging the game.core but I didn't get anything

 

Please help! Have a nice day!

 

 

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
12 minutes ago, Catalin2o14 said:

in the idea that you have nothing wrong with header and quests,

trucate these table from player https://metin2.download/picture/mcSI0DzEZt7F7zOehBB37Z2Rrzn7vjHc/.png

 

if not working, replace them

Its not work ? Any idea? I will try replace the tables but i think its not fix it

42 minutes ago, Catalin2o14 said:

in the idea that you have nothing wrong with header and quests,

trucate these table from player https://metin2.download/picture/mcSI0DzEZt7F7zOehBB37Z2Rrzn7vjHc/.png

 

if not working, replace them

Solved. The problem is guild.cpp INSERT query :)

    for (int i = 0; i < GUILD_GRADE_COUNT; ++i)
    {
        DBManager::instance().Query("INSERT INTO guild_grade VALUES(%u, %d, '%s', %d)", 
                get_table_postfix(),
                m_data.guild_id, 
                i + 1, 
                m_data.grade_array.grade_name, 
                m_data.grade_array.auth_flag);
    }

 

to: 

 

    for (int i = 0; i < GUILD_GRADE_COUNT; ++i)
    {
        DBManager::instance().Query("INSERT INTO guild_grade%s VALUES(%u, %d, '%s', %d)", 
                get_table_postfix(),
                m_data.guild_id, 
                i + 1, 
                m_data.grade_array.grade_name, 
                m_data.grade_array.auth_flag);
    }

Edited by Metin2 Dev
Core X - External 2 Internal
  • Angry 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Activity

    1. 43

      Upgraded Reference (TMP4 Base) By Ulthar

    2. 2

      TXT File To Lower Case [Phaselis Map Works]

    3. 43

      Upgraded Reference (TMP4 Base) By Ulthar

    4. 43

      Upgraded Reference (TMP4 Base) By Ulthar

    5. 5

      Official Environment Effect Options [REVERSED]

    6. 1

      4 Alternatives Open Source to Trello

  • Recently Browsing

    • No registered users viewing this page.
×
×
  • 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.