Jump to content

Empire Language , Make Guild and Bug Energy 2x


Recommended Posts

  • Premium

Hy everyone , i have 3 problems on my metin2 server.

 

1.No1 can understand , they had M1 Language , ring , in constinfo client i have convert_language_empire = 1 .

2.I can't make guild , when i write my name of guild and i press OK , nothing happened, no syserr nothing.

3.When i use energy cristal give me 3-10% , but if i mount this bonus double.

 

Help ? ( i use 40k c++ source )

Link to comment
Share on other sites

  • Premium

I don't know if it's gonna work but try it.

 

https://mega.co.nz/#!HoRkTRLC!kNDE3BcdrkPCrqjGtj3v53K9DtQjvmEjy7mVZk9etqo

 

Put them into your locale/x/ folder (serverside)

With language i saw it's ok , cuz if i had M1 language i can understand. But with energy bonus and guild make i don't fix.

Link to comment
Share on other sites

2. source / input_main.cpp

 

search CInputMain::AnswerMakeGuild

 

 

see..

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;

it's bug..

 

replace.

// 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;
    }

test create guild.

  • Love 3
Link to comment
Share on other sites

  • 1 month later...
  • 4 years later...

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.