level cap increased to 80

This commit is contained in:
2024-09-05 19:41:30 -05:00
parent 3f8b3bc6cb
commit f6df6db17b
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -444,8 +444,8 @@ public class Experience {
}
} else { // Give EXP to a single character
if (!killer.isAlive()) // Skip if the player is dead.
return;
//if (!killer.isAlive()) // Skip if the player is dead.
// return;
if (killer.getLevel() >= MBServerStatics.LEVELCAP)
return;
+1 -1
View File
@@ -357,7 +357,7 @@ public class MBServerStatics {
public static final int COMBAT_SEND_DODGE = 20;
public static final int COMBAT_SEND_BLOCK = 21;
public static final int COMBAT_SEND_PARRY = 22;
public static final short LEVELCAP = 75;
public static final short LEVELCAP = 80;
public static final int LEVEL_CON_WHITE = 7;
public static final int RESPAWN_TIMER = 90 * 1000;
public static final int DESPAWN_TIMER = 12 * 1000;