te0x Posted October 20, 2014 Posted October 20, 2014 (edited) So its a Minicode to make some balance in clans, so you wont have all the server in one clan ;p so configs.java find these lines public static boolean ALLOW_HERO_SUBSKILL; public static int HERO_COUNT; and below add these public static int MAX_CLAN_MEMBERS; public static int MAX_CLAN_MEMBERS_ROYALS; public static int MAX_CLAN_MEMBERS_KNIGHTS; find these ALLOW_HERO_SUBSKILL = Boolean.parseBoolean(L2JFrozenSettings.getProperty("CustomHeroSubSkill", "False")); HERO_COUNT = Integer.parseInt(L2JFrozenSettings.getProperty("HeroCount", "1")); below add MAX_CLAN_MEMBERS = Integer.parseInt(L2JFrozenSettings.getProperty("MaxMembersMain", "80")); MAX_CLAN_MEMBERS_ROYALS = Integer.parseInt(L2JFrozenSettings.getProperty("MaxMembersForRoyals", "80")); MAX_CLAN_MEMBERS_KNIGHTS = Integer.parseInt(L2JFrozenSettings.getProperty("MaxMembersForKnights", "80")); now in L2Clan.java public int getMaxNrOfMembers(int pledgetype) { int limit = 0; switch(pledgetype) { case 0: switch(getLevel()) { - case 4: - limit = 40; - break; - case 3: - limit = 30; - - break; - case 2: - limit = 20; - break; - case 1: - limit = 15; - break; - case 0: - limit = 10; - break; default: - limit = 40; + limit = Config.MAX_CLAN_MEMBERS; break; } break; case -1: case 100: case 200: - limit = 20; + limit = Config.MAX_CLAN_MEMBERS_ROYALS; break; case 1001: case 1002: case 2001: case 2002: - limit = 10; + limit = Config.MAX_CLAN_MEMBERS_KNIGHTS; break; default: break; } return limit; } so where MAX_CLAN_MEMBERS = the players amount that can have in the main MAX_CLAN_MEMBERS_ROYALS = The players amount that can have in royals MAX_CLAN_MEMBERS_KNIGHTS = The players amount that can have in Knights. config/function/L2Jfrozen.properties +# Maximum members for a clan +MaxMembersMain = 10 +MaxMembersForRoyals = 5 +MaxMembersForKnights = 2 Edited October 20, 2014 by te0x Quote
numl0ckas Posted October 20, 2014 Posted October 20, 2014 (edited) Why post shit like this? Omg... its like i sayMinicode message activeChar.sendMessage("Hello, " + activeChar.getName()); P.S. Now I need share this shit to all community? Edited October 20, 2014 by numl0ckas Quote
te0x Posted October 20, 2014 Author Posted October 20, 2014 Why post shit like this? Omg... its like i say Minicode message activeChar.sendMessage("Hello, " + activeChar.getName()); P.S. Now I need share this shit to all community? with this sh1t actually you can make a nice balance. also it can help newbies so please stfu :) Quote
`iAndre Posted October 21, 2014 Posted October 21, 2014 with this sh1t actually you can make a nice balance. also it can help newbies so please stfu :) Balance ? Lol dude, so if your server has an amount of 1000 players and more than 60-70 ppl want to be on the same clan what do you do ? (Don't tell me an ally, cause someone might have disable the ally system in his server.) Quote
te0x Posted October 21, 2014 Author Posted October 21, 2014 Balance ? Lol dude, so if your server has an amount of 1000 players and more than 60-70 ppl want to be on the same clan what do you do ? (Don't tell me an ally, cause someone might have disable the ally system in his server.) Ye its useless for servers with high community, but in the small server's 70-100 ppl you can actually use it to avoid the "All the server is in your clan, taking all the rb's, pvp zones, its a gm clan etc". Quote
`iAndre Posted October 21, 2014 Posted October 21, 2014 Ye its useless for servers with high community, but in the small server's 70-100 ppl you can actually use it to avoid the "All the server is in your clan, taking all the rb's, pvp zones, its a gm clan etc". Well, i would prefer something like 3 big clans fighting each other rather than 10 small. Anyway, thanks for sharing it with us. Someone may use it. Quote
te0x Posted October 21, 2014 Author Posted October 21, 2014 Well, i would prefer something like 3 big clans fighting each other rather than 10 small. well you would prefer it only if you wanted the server to stay on the 100 ppl ;p anyways :) Quote
snifi Posted October 22, 2014 Posted October 22, 2014 guys u dont have to use this if u dont like it. but there are still some ppl that could be interested in that code ;) Quote
Monkey D. Luffy Posted December 3, 2014 Posted December 3, 2014 Interesting Code...Some ppl maybe use it.. Quote
StinkyMadness Posted December 6, 2014 Posted December 6, 2014 i think is helpfull code but that will not "bug" the (Clan Level Increase) ? Quote
mawtaw7 Posted December 6, 2014 Posted December 6, 2014 i think is helpfull code but that will not "bug" the (Clan Level Increase) ? lower in l2clan u have this IncreaseClanLevel with cases getMembersCount >= x just change it Quote
StinkyMadness Posted December 7, 2014 Posted December 7, 2014 lower in l2clan u have this IncreaseClanLevel with cases getMembersCount >= x just change it Yes but need to post and this part of CODE :) Quote
Ta®oS™ Posted December 7, 2014 Posted December 7, 2014 Yes but need to post and this part of CODE :) getMembersCount Config.XX_XX; Quote
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.