Jump to content
  • 0

Max Guild Members


Question

Posted

Please move this topic if I got into the wrong section sorry...

 

 

How to change the Maximum Guild Members per Guild?

 

Maximum Members will be 20 and Guild Extension Skill will only give +1 per level

 

If Lv 0 Guild Extension, Max Guild Members will be 10

If Lv 1 Guild Extension, Max Guild Members will be 11

and so on..

 

THNK YOU !

3 answers to this question

Recommended Posts

Posted

/src/common/mmo.h
 
 

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

 
The first value "16" is the original guild members capacity, without any guild extension.  Then "10" (guild extension max level) * 6 (amount of members per level)
 
 
In your case I think it would be like:
 

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

 
With this you should have 10 members at a initial guild members value at level "0", and 1 more member per guild extension level. You should recompile your server after this change.
 
 
Note: If you are going to do this change when your server had guilds already with more than the new limit, you must reset your guild members.

  • Upvote 1
Posted

/src/common/mmo.h

 

 

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

 

The first value "16" is the original guild members capacity, without any guild extension.  Then "10" (guild extension max level) * 6 (amount of members per level)

 

 

In your case I think it would be like:

 

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

 

With this you should have 10 members at a initial guild members value at level "0", and 1 more member per guild extension level. You should recompile your server after this change.

 

 

Note: If you are going to do this change when your server had guilds already with more than the new limit, you must reset your guild members.

 

Thank you very much Olrox :) Much Appreciated for the answer XD It's very clear lol 

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...