Jump to content

Can't creat a guild


Recommended Posts

  • 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
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • 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.