Reduce Guild capacity into 26 members only [Help]

Pandaaa

New member
Messages
170
Points
0
Location
Wonderland
Github
donthedonn
Emulator
mmo.h

#endif
#ifndef MAX_GUILD
#define MAX_GUILD (BASE_GUILD_SIZE+10*1) // Increased max guild members +6 per 1 extension levels [Lupus]
#endif

int_guild.c

// Set the max number of members, Guild Extension skill - currently adds 6 to max per skill lv.
g->max_member = BASE_GUILD_SIZE + inter_guild->checkskill(g, GD_EXTENSION) * 1;
if(g->max_member > MAX_GUILD)

error i get after compile the runs the server

[Warning]: HPMDataCheck:HPMHooking: 'guild' size mismatch 11336 != 7736

[Fatal Error]: HPM:plugin_load: 'plugins/HPMHooking_map.dll' failed DataCheck, out of sync from the core (recompile plugin)!
 
annd
 
[Warning]: HPMDataCheck:HPMHooking: 'guild' size mismatch 11336 != 7736
 
you must rebuild also all plugins. It show error what HPM not recompiled

 
Back
Top