Jump to content

Question

3 answers to this question

Recommended Posts

  • 0
Posted

Search..... is your best friend.....

 

btw;

 

 

CharStat.java

 

	-	                return (int) (calcStat(Stats.EVASION_RATE, 0, target, null) / _activeChar.getArmourExpertisePenalty());
+	                int val = (int) (calcStat(Stats.EVASION_RATE, 0, target, null) / _activeChar.getArmourExpertisePenalty());
+	                if (val > Config.MAX_EVASION && !(_activeChar instanceof L2PcInstance && ((L2PcInstance)_activeChar).isGM()))
+	                        return Config.MAX_EVASION;
+	                return val;
 	        }

 	        public long getExp()

 

Config.java  

 

 

.....

public static int                                       MAX_EVASION;

…

 	                        ALT_DISABLE_RAIDBOSS_PETRIFICATION = Boolean.parseBoolean(altSettings.getProperty("DisableRaidBossPetrification", "false"));
 	                        ALT_PCRITICAL_CAP = Integer.parseInt(altSettings.getProperty("AltPCriticalCap", "500"));
 	                        ALT_MCRITICAL_CAP = Integer.parseInt(altSettings.getProperty("AltMCriticalCap", "200"));
+	                        MAX_EVASION = Integer.parseInt(altSettings.getProperty("MaxEvasion", "200"));

 

GL.

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
Answer this question...

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