Guild Error [ Source ]

simplynice

New member
Messages
52
Points
0
I changed the default settings into:

#define MAX_GUILD 2+10*1       // Increased max guild members +6 per 1 extension levels [Lupus] 

Wiped my database guild using this:



UPDATE `char` SET `guild_id`=0 WHERE `guild_id` >= 1;TRUNCATE TABLE `guild`;TRUNCATE TABLE `guild_alliance`;TRUNCATE TABLE `guild_castle`;TRUNCATE TABLE `guild_expulsion`;TRUNCATE TABLE `guild_member`;TRUNCATE TABLE `guild_position`;TRUNCATE TABLE `guild_skill`;TRUNCATE TABLE `guild_storage`; 

Here's the error when i tried to put up a skill level in one of my guild skill:

[Error]: guild_recv_info: Received guild with 16 members, but MAX_GUILD is only 12. Extra guild-members have been lost![Error]: Guild 1:Awesome has capacity for too many guild members (16), max supported is 12 
Here's the error when i tried to make a guild:

[Error]: guild_recv_info: Received guild with 16 members, but MAX_GUILD is only 12. Extra guild-members have been lost! 
Am i doing something wrong?

test.png

 
the default guild member is still set to 16. and for every level of the guild extension it will give you 6 additional member. you must set it correctly to make it work with your custom max guild member.

 
set it to 2 = default guild member

and 1 every level of the guild extension

So the result is 12? right?

 
Back
Top