Yoona Posted September 13, 2013 Posted September 13, 2013 I don't know if, I did something wrong but seeing this... Quote
0 Chaos92 Posted November 24, 2019 Posted November 24, 2019 On 11/23/2019 at 10:56 PM, gidzdlcrz said: ^ so does it work? What you need to change : src/char/int_guild about max capacity calculation initialization and also at guild extension code < src/common/mmo.h for new calculation If you're going to reduce the member capacity, better for you to wipe all related guild databases first including guild id in every character. Quote
0 budek Posted June 22, 2021 Posted June 22, 2021 Just sharing my max guild capacity by 20 /src/common/mmo.h : From #define MAX_GUILD 16+10*6 to #define MAX_GUILD 10+10*1 // increased max guild members +6 per 1 extension levels [Lupus] and /src/char/int_guild.c : From g->max_member = 16 + guild_checkskill(g, GD_EXTENSION) * 6; to g->max_member = 10 + guild_checkskill(g, GD_EXTENSION) * 1; 2 Quote
0 Sallycantdance Posted November 12, 2022 Posted November 12, 2022 On 9/13/2013 at 3:03 PM, Emistry said: db/re/skill_db.txt#L1258 edit the skill max level 10004,0,0,0,0,0,0,10,0,no,0,0x10,0,none,0,0x0, GD_EXTENSION,Guild Extension if i changed the guild extension skill max to 1 did it affect the max gcap example 16 my mmo#define MAX_GUILD 6+10*1 int_guild // Set the max number of members, Guild Extention skill - currently adds 6 to max per skill lv. g->max_member = 6 + guild_checkskill(g, GD_EXTENSION) * 1; // Initialize guild property g->max_member=16; Quote
-2 Emistry Posted September 13, 2013 Posted September 13, 2013 after you do that you should clear the guild in your server .... since you already limited it to 20+ member...but your previous guild could have more member than 20 ... btw...the guild expansion skill .... if not mistaken it will still affect your guild capacity ~ Quote
Patskie Posted September 13, 2013 Posted September 13, 2013 Check your src/common/mmo.h#L96. Did you make any configurations regarding guild members prior to this thread? Quote
Yoona Posted September 13, 2013 Author Posted September 13, 2013 Check your src/common/mmo.h#L96. Did you make any configurations regarding guild members prior to this thread? i already change that one, what i did was like this 10+10*1 Quote
Yoona Posted September 13, 2013 Author Posted September 13, 2013 after you do that you should clear the guild in your server .... since you already limited it to 20+ member...but your previous guild could have more member than 20 ... btw...the guild expansion skill .... if not mistaken it will still affect your guild capacity ~ actually i already did that, then i create a new guild upgrade the Guild Extension that error pops out... Quote
Emistry Posted September 13, 2013 Posted September 13, 2013 perhap you can try edit the max skill level of that skill or disable it ? Quote
Yoona Posted September 13, 2013 Author Posted September 13, 2013 perhap you can try edit the max skill level of that skill or disable it ? where can i edit the Guild Extension effect? Quote
Anubis-K Posted September 13, 2013 Posted September 13, 2013 /src/char/int_guild.c , around line 838 // Set the max number of members, Guild Extention skill - currently adds 6 to max per skill lv. g->max_member = 16 + guild_checkskill(g, GD_EXTENSION) * 6; 1 Quote
Emistry Posted September 13, 2013 Posted September 13, 2013 db/re/skill_db.txt#L1258 edit the skill max level 10004,0,0,0,0,0,0,10,0,no,0,0x10,0,none,0,0x0, GD_EXTENSION,Guild Extension Quote
uDe Posted September 13, 2013 Posted September 13, 2013 (edited) I don't know if, I did something wrong but seeing this... Untitled.jpg That's because your sql.. Make sure you did truncate related tables for this modifications. 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; And I'm referring this guide : http://rathena.org/board/topic/61039-help-max-guild-member/#entry89640 and this : http://www.eathena.ws/board/index.php?showtopic=222757&st=0 Edited September 13, 2013 by uDe 1 Quote
Question
Yoona
13 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.