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.
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; }
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 ?
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
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
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now