Jump to content

Recommended Posts

Posted (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 by te0x
Posted (edited)

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?

Edited by numl0ckas
Posted

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 :)

Posted

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.)

Posted

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".

Posted

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.

Posted

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 :)

  • 1 month later...
Posted

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

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...