Noticias:

No tienes permiso para ver los enlaces. Para poder verlos Registrate o Conectate.

Menú Principal

Disable Weight - Grade Penalty

Iniciado por Swarlog, Jul 25, 2025, 11:29 PM

Tema anterior - Siguiente tema

Swarlog

properties :
+#------------------------ 
+# Grade Weight Config    # 
+#------------------------ 
+# Disable Weight Penalty  
+DisableWeightPenalty = False

________________________________

Config.java 

+public static boolean   DISABLE_WEIGHT_PENALTY;  

+DISABLE_WEIGHT_PENALTY = Boolean.parseBoolean(L2JBrasilCustom.getProperty("DisableWeightPenalty", "False")); 

________________________________

L2PcInstance.java
@@ -1749,5 +1749,5 @@
                         int weightproc = getCurrentLoad() * 1000 / maxLoad;
                         int newWeightPenalty;
-                        if (weightproc < 500 || _dietMode)
+                        if (weightproc < 500 || _dietMode || Config.DISABLE_WEIGHT_PENALTY)
                         {
                                 newWeightPenalty = 0;
@@ -1773,5 +1773,5 @@
                         {
                                 _curWeightPenalty = newWeightPenalty;
-                                if (newWeightPenalty > 0 && !_dietMode)
+                                if (newWeightPenalty > 0 && !_dietMode && Config.DISABLE_WEIGHT_PENALTY)
                                 {


Disable Grade Penalty Config:


Quote
properties :
+#------------------------ 
+# Grade Penalty Config   # 
+#------------------------ 
+# Disable Grade Penalty 
+DisableGradePenalty = False


_____________________________________

Config.java 

+    public static boolean   DISABLE_GRADE_PENALTY; 

 
+    DISABLE_GRADE_PENALTY  = Boolean.parseBoolean(L2JBrasilCustom.getProperty("DisableGradePenalty", "False")); 

______________________________________________________

L2PcInstance.java
@@ -1805,5 +1805,5 @@
       newPenalty = newPenalty - getExpertiseIndex();
 
-      if (newPenalty <= 0)
+      if (newPenalty <= 0 || Config.DISABLE_GRADE_PENALTY)
             newPenalty = 0;