Jump to content

Get Guild Max Level


Recommended Posts

Hello metin2dev,
I will teach you how to modify the necessary EXP to level up the guild , for the binary.
Browse to your source folder -> UserInterface -> Locale.cpp and Search for:
static const int GUILD_LEVEL_MAX = 20;
 
Edit 20 with your max level.
 

Under this you will find:

8000000UL, // 18
10000000UL, // 19
42000000UL // 20
 

After 20 , add the coma , then add the rest.

Dont forget to remove the coma at the leatest value.
For example:

 

420000000UL, // 20
62300000UL, // 21
13512511UL // 22
 

That's all. :)

  • Love 6
Link to comment
Share on other sites

  • 11 months later...
  • 6 months later...

Binary -> UserInterface/PythonGuild.cpp

Spoiler

int GULID_MAX_LEVEL = 20;

Edit 20 with your max level.

Source -> common/length.h

Spoiler

GUILD_MAX_LEVEL            = 20,

Edit 20 with your max level.

Source -> game/src/constants.cpp

Spoiler

const DWORD guild_exp_table[GUILD_MAX_LEVEL+1] =

Edit this const with the same way and values as your Locale.cpp in UserInterface of your Binary. Once done, copy all the ULs and paste them to the const below this one (DWORD guild_exp_table2[GUILD_MAX_LEVEL+1])

 

Tutorial is now completed :)

Kind regards ~ Mind Rapist

  • Love 1
Link to comment
Share on other sites

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.