WhatFT Posted February 26, 2013 Group: Members Topic Count: 142 Topics Per Day: 0.03 Content Count: 511 Reputation: 7 Joined: 02/15/12 Last Seen: April 11, 2014 Share Posted February 26, 2013 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 ! Quote Link to comment Share on other sites More sharing options...
Olrox Posted February 26, 2013 Group: Members Topic Count: 87 Topics Per Day: 0.02 Content Count: 1335 Reputation: 933 Joined: 10/26/11 Last Seen: November 19, 2023 Share Posted February 26, 2013 /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. 1 Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted February 26, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted February 26, 2013 Edit your src file, and don't forget to recompile Quote Link to comment Share on other sites More sharing options...
WhatFT Posted February 27, 2013 Group: Members Topic Count: 142 Topics Per Day: 0.03 Content Count: 511 Reputation: 7 Joined: 02/15/12 Last Seen: April 11, 2014 Author Share Posted February 27, 2013 /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 Quote Link to comment Share on other sites More sharing options...
Question
WhatFT
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 !
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.