MAX_GUILD

Barabb4s

New member
Messages
3
Points
0
Is there any solution for the guild to pass the 76 members? I wanted no to leave limited.

#define MAX_GUILD (BASE_GUILD_SIZE+10000*6
Error, is there any other way?

 
Last edited by a moderator:
You Need edit this too:  src/char/int_guild.c  around line ~ 866
 

Code:
g->max_member = BASE_GUILD_SIZE + inter_guild->checkskill(g, GD_EXTENSION) * 6;
 
You Need edit this too:  src/char/int_guild.c  around line ~ 866
 

g->max_member = BASE_GUILD_SIZE + inter_guild->checkskill(g, GD_EXTENSION) * 6;

g->max_member = BASE_GUILD_SIZE + inter_guild->checkskill(g, GD_EXTENSION) * 6;



#define MAX_GUILD (BASE_GUILD_SIZE+10000*6

and

g->max_member = BASE_GUILD_SIZE + inter_guild->checkskill(g, GD_EXTENSION) * 10000;


?

 
@WhiteEagle just have the solution to your problem. If you have another error, please elaborate with screenshots if needed.

If you need to change Guild size no matter skill level, just change

#define BASE_GUILD_SIZE

to some high number

 
Last edited by a moderator:
@WhiteEagle just have the solution to your problem. If you have another error, please elaborate with screenshots if needed.

If you need to change Guild size no matter skill level, just change

#define BASE_GUILD_SIZE

to some high number
Get. But the database is 255 as the maximum. I do not know if it's just looks or it works.

WhatsApp Image 2019-06-30 at 19.09.11.jpeg

 
Back
Top