raF Posted March 25, 2015 Posted March 25, 2015 How to change the max count of members in a clan 8 lvl. Im using acis. Quote
0 Gries Posted March 25, 2015 Posted March 25, 2015 L2Clan.java public int getMaxNrOfMembers(int pledgeType) { int limit = 0; switch (pledgeType) { case 0: switch (getLevel()) { case 3: limit = 30; break; case 2: limit = 20; break; case 1: limit = 15; break; case 0: limit = 10; break; default: limit = 40; break; } Quote
0 raF Posted March 25, 2015 Author Posted March 25, 2015 and how this should look if I want a 50 members for every level ? Quote
0 SweeTs Posted March 25, 2015 Posted March 25, 2015 (edited) limit = 50? :okey: case3: case2: case1: case0: limit = 50; or simply delete it and keep default. Edited March 25, 2015 by SweeTs Quote
Question
raF
How to change the max count of members in a clan 8 lvl. Im using acis.
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.
Note: Your post will require moderator approval before it will be visible.