Jump to content
  • 0

Guild Cap to 36


Bringer

Question


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  745
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

These is what I've done for 36 (example) max guild members :

/src/common/mmo.h :
 

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


changed to
 

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

And

/src/char/int_guild.c :
 

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


changed to
 

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

 

the problem i cant find this code 

 

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

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  311
  • Reputation:   46
  • Joined:  11/06/11
  • Last Seen:  

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

 

line 829 on int_guild.c

Edited by vBrenth
Link to comment
Share on other sites

  • -1

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  149
  • Reputation:   24
  • Joined:  02/11/16
  • Last Seen:  

To save you from editing your SRC. Just edit guild_skill_tree.txt on db.

10004,10,0,0,0,0,0,0,0,0,0,0	//GD_EXTENSION#Guild Extension#

Change 10 to 6

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...