Jump to content
  • 0

change members guild


ermac

Question


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   0
  • Joined:  02/15/12
  • Last Seen:  

Hello someone can help me with the following error, I changed the amount of members in the guild to 36 but I get the following error

[Error]: Guild 4: test has capacity for too many guild members (76), max supported is 36

Note; When I made this change I had no guild created

please help me

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  106
  • Reputation:   30
  • Joined:  04/03/17
  • Last Seen:  

/src/common/mmo.h :
 

Quote

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


 


changed to
 

Quote

#define MAX_GUILD 16+20*1 // increased max guild members +6 per 1 extension levels [Lupus]


 

And

/src/char/int_guild.c :
 

Quote

 g->max_member = 16 + guild_checkskill(g, GD_EXTENSION) * 6;


 


changed to
 

Quote

 g->max_member = 16 + guild_checkskill(g, GD_EXTENSION) * 1;



 

if you delete all guild you must delete all data in sql

guild

guild_alliance

guild_castle

guild_expulsion

guild_member

guild_position

guild_skill

guild_storage


 
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   0
  • Joined:  02/15/12
  • Last Seen:  

Hello thanks for the help but I can not find the line that you indicate in int_guild.c

int_guild.c

 

please help me

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...