Metin2 [C ++] "Unlimited" number of guild members

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Blaze

Elite
Elite
VIP
Joined
Jan 28, 2019
Messages
507
Credits
635
- "Unlimited" number of members in the guild.

Let's get started.


1. Edit the file "guild.cpp" - This file can be found in the source game.
2. We are looking for the function:
Code:
Expand Collapse Copy
int CGuild::GetMaxMemberCount()
3. We edit it in the following way:
Code:
Expand Collapse Copy
int CGuild::GetMaxMemberCount()
{
    return INT_MAX;
}
ps I also noticed that after this change in the window of the guild the word " 1 / INFINITY " is displayed , to change it, edit clienta, more precisely " root / localeinfo.py " we are looking for the phrase " INFINITY " and then, in principle, change it to which you want.
 
Back
Top