Jump to content

Recommended Posts

Hello everyone,

 

I have a huge problem. I can't create a guild. I don't know why. The Questdialog is opening and I have to pay and select a name, but after that the window is closing and no guild was created. I'm using 40k Files with mailine_released server source. 

 

Greetz

Link to comment
https://metin2.dev/topic/13490-cant-creat-a-guild/
Share on other sites

  • Replies 10
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

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!

Edited by Cătălin
Link to comment
https://metin2.dev/topic/13490-cant-creat-a-guild/#findComment-77050
Share on other sites

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • 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.