Jump to content

Recommended Posts

Posted

Limit of Elemental Attributes value!!

 

config.alltsettings.properties

# Limit of Attributes

AltMaxAtkElem = 200

AltMaxDefElem = 200

 

config.java

//////ALT_SETTINGS_FILE//////

public static int    ALT_MAX_ATK_ELEM;

public static int                   ALT_MAX_DEF_ELEM;

 

ALT_MAX_ATK_ELEM = Integer.parseInt(altSettings.getProperty("MaxAtkElem", "500"));                        

ALT_MAX_DEF_ELEM = Integer.parseInt(altSettings.getProperty("MaxDefElem", "500"));  

 

else if (pName.equalsIgnoreCase("MaxAtkElem"))

ALT_GRADE_PENALTY = Boolean.parseBoolean(pValue);

else if (pName.equalsIgnoreCase("MaxDefElem"))

ALT_GRADE_PENALTY = Boolean.parseBoolean(pValue);

 

PcStat.java

@Override

public int getAttackElementValue(byte attribute)

{

int value = super.getAttackElementValue(attribute);

 

               if (value > Config.ALT_MAX_ATK_ELEM && Config.ALT_MAX_ATK_ELEM > 0 && !getActiveChar().isGM())

return Config.ALT_MAX_ATK_ELEM;

 

// 20% if summon exist

if (summonShouldHaveAttackElemental(getActiveChar().getPet()))

return value / 5;

 

return value;

}

 

       @Override

public int getDefenseElementValue(byte attribute)

{

int value = super.getDefenseElementValue(attribute);

 

               if (value > Config.ALT_MAX_DEF_ELEM && Config.ALT_MAX_DEF_ELEM > 0 && !getActiveChar().isGM())

return Config.ALT_MAX_DEF_ELEM;

 

return value;

}

 

credits to me

  • 2 weeks later...
Posted

You could make a patch ...

 

Anyway thx.... xD

Index: l2jfree-core/config/altsettings.properties
===================================================================
--- l2jfree-core/config/altsettings.properties	(revision 0)
+++ l2jfree-core/config/altsettings.properties	(working copy)
@@ -666,6 +666,10 @@
# False on European servers.
AltEnableDimensionalMerchants = False

+# Limit of Attributes
+AltMaxAtkElem = 200
+AltMaxDefElem = 200
+
Index: l2jfree-core/src/main/java/com/l2jfree/Config.java
===================================================================
--- l2jfree-core/src/main/java/com/l2jfree/Config.java	(revision 0)
+++ l2jfree-core/src/main/java/com/l2jfree/Config.java	(working copy)
@@ -1492,6 +1492,8 @@
	public static int					ALT_MAX_RUN_SPEED;															// Runspeed limit
	public static float					ALT_MCRIT_RATE;
	public static float					ALT_MCRIT_PVP_RATE;
+	public static int                                   ALT_MAX_ATK_ELEM;
+	public static int                                   ALT_MAX_DEF_ELEM;

	public static double				ALT_POLEARM_DAMAGE_MULTI;
	public static double				ALT_POLEARM_VAMPIRIC_MULTI;
@@ -1850,6 +1852,8 @@
			ALT_MAX_RUN_SPEED = Integer.parseInt(altSettings.getProperty("MaxRunSpeed", "250"));
			ALT_MCRIT_RATE = Float.parseFloat(altSettings.getProperty("AltMCritRate", "3.0"));
			ALT_MCRIT_PVP_RATE = Float.parseFloat(altSettings.getProperty("AltMCritPvpRate", "2.5"));
+			ALT_MAX_ATK_ELEM = Integer.parseInt(altSettings.getProperty("MaxAtkElem", "200"));
+			ALT_MAX_DEF_ELEM = Integer.parseInt(altSettings.getProperty("MaxDefElem", "200"));

			ALT_POLEARM_DAMAGE_MULTI = Double.parseDouble(altSettings.getProperty("AltPolearmDamageMulti", "1.0"));
			ALT_POLEARM_VAMPIRIC_MULTI = Double.parseDouble(altSettings.getProperty("AltPolearmVampiricMulti", "0.5"));
@@ -4476,6 +4480,12 @@
			CASTLE_ZONE_FAME_TASK_FREQUENCY = Integer.parseInt(pValue);
		else if (pName.equalsIgnoreCase("CastleZoneFameAquirePoints"))
			CASTLE_ZONE_FAME_AQUIRE_POINTS = Integer.parseInt(pValue);
+		
+		//Elemental system
+		else if (pName.equalsIgnoreCase("MaxAtkElem"))
+			ALT_GRADE_PENALTY = Boolean.parseBoolean(pValue);
+		else if (pName.equalsIgnoreCase("MaxDefElem"))
+			ALT_GRADE_PENALTY = Boolean.parseBoolean(pValue);

		else
			return false;
Index: l2jfree-core/src/main/java/com/l2jfree/gameserver/model/actor/stat/PcStat.java
===================================================================
--- l2jfree-core/src/main/java/com/l2jfree/gameserver/model/actor/stat/PcStat.java	(revision  0)
+++ l2jfree-core/src/main/java/com/l2jfree/gameserver/model/actor/stat/PcStat.java	(working copy)
@@ -487,18 +487,32 @@
			return Config.ALT_MAX_EVASION;
		return val;
	}
-
+	
	@Override
	public int getAttackElementValue(byte attribute)
	{
-		int value = super.getAttackElementValue(attribute);
+      int value = super.getAttackElementValue(attribute);
+      
+                if (value > Config.ALT_MAX_ATK_ELEM && Config.ALT_MAX_ATK_ELEM > 0 && !getActiveChar().isGM())
+         return Config.ALT_MAX_ATK_ELEM;

-		// 20% if summon exist
-		if (summonShouldHaveAttackElemental(getActiveChar().getPet()))
-			return value / 5;
-
+      // 20% if summon exist
+      if (summonShouldHaveAttackElemental(getActiveChar().getPet()))
+		return value / 5;
+      
		return value;
	}
+   
+   @Override
+   public int getDefenseElementValue(byte attribute)
+   {
+      int value = super.getDefenseElementValue(attribute);
+      
+                if (value > Config.ALT_MAX_DEF_ELEM && Config.ALT_MAX_DEF_ELEM > 0 && !getActiveChar().isGM())
+         return Config.ALT_MAX_DEF_ELEM;
+            
+      return value;
+   }

	public boolean summonShouldHaveAttackElemental(L2Summon pet)
	{

  • 1 year later...
  • 5 months later...
  • 4 weeks later...

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.



  • Posts

    • All that shit are false positives of the vanganth cliext, sources are well and who sell it is a big scammer
    • Information Selling a premium Lineage 2 High Five (L2J) project with active development, available by subscription. Includes Git support and access to compiled or full source code. Ideal for serious server owners seeking stability and performance, uniqueness and well-done features.   General Project Specifications: JDK Version: 23 -> 24 Chronicle: HighFive Structure: Core & Datapack merged into a single project Database: MariaDB Database Driver: HicariCP GIT Website: gitlab.com   Features include (but are not limited to):   1. Tournament Single & Party (Check Youtube Video) 2. Faction (Check Youtube Video) 3. Event Engine (Check Youtube Video) 4. Sell Buff System (Check Youtube Video) 5. Start UP System (Check Youtube Video) 6. User Panel 7. Visual - Dress me System 8. Donate Store 9. Automatic Farm System (Check Youtube Video) 10. Captcha (Anti-BOT) (Check Youtube Video) 11. Auction (Check Youtube Video) 12. Vote (API) 13. Admin Real Time Balance (Check Youtube Video) 14. Achievements (Check Youtube Video) 15. Daily Mission (Check Youtube Video) 16. A.I. Bot (Check Youtube Video) 17. Rebirth 18. Daily Reward  19. Skill Tree - Ability System 20. Craft System 21. Twitch Automatic Reward (Check Youtube Video) 22. Quiz Game (Check Youtube Video) 23. Automatic Item Enchant (Check Youtube Video) 24. Secondary Auth Using Google Authenticator (Check Youtube Video) 25. Gm Shop - Gatekeeper - Scheme Buffer   How to get Access (Payment Subscription): To get Access you either pay monthly subscription to GIT for source or Compiled. Project is currently active and has at least 1-2 commit / day.  Clients in both Compiled & Source subscription can request features or any addon in already existing mods inside discord.   Price per Month (Source) in GIT: 250 Eur Price per Month (Compiled) in GIT: 100 Eur   Contact: To get Access or ask further information join discord  https://discord.gg/gKAsAhJNuq      
    • We're officially closing the current season today. While we focus on refining the Essence project, our resources will temporarily shift toward supporting the Classic server.
    • ➡ Discount for your purchase: MAY2025 (10% discount) ➡ Our Online Shop: https://socnet.store  ➡ Our SMM-Boosting Panel: https://socnet.pro  ➡ Telegram Shop Bot: https://socnet.shop  ➡ Telegram Support: https://t.me/solomon_bog  ➡ Telegram Channel: https://t.me/accsforyou_shop  ➡ Discord Support: @AllSocialNetworksShop  ➡ Discord Server: https://discord.gg/y9AStFFsrh  ➡ WhatsApp Support: https://wa.me/79051904467 ➡ WhatsApp Channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n  ➡ Email Support: solomonbog@socnet.store 
  • Topics

×
×
  • Create New...