|
@@ -78,6 +78,7 @@ public final class Config
|
|
public static int MASTERACCESS_NAME_COLOR;
|
|
public static int MASTERACCESS_NAME_COLOR;
|
|
public static int MASTERACCESS_TITLE_COLOR;
|
|
public static int MASTERACCESS_TITLE_COLOR;
|
|
public static boolean ALT_GAME_DELEVEL;
|
|
public static boolean ALT_GAME_DELEVEL;
|
|
|
|
+ public static boolean DECREASE_SKILL_LEVEL;
|
|
public static double ALT_WEIGHT_LIMIT;
|
|
public static double ALT_WEIGHT_LIMIT;
|
|
public static int RUN_SPD_BOOST;
|
|
public static int RUN_SPD_BOOST;
|
|
public static int DEATH_PENALTY_CHANCE;
|
|
public static int DEATH_PENALTY_CHANCE;
|
|
@@ -1309,6 +1310,7 @@ public final class Config
|
|
MASTERACCESS_NAME_COLOR = Integer.decode(StringUtil.concat("0x", Character.getProperty("MasterNameColor", "00FF00")));
|
|
MASTERACCESS_NAME_COLOR = Integer.decode(StringUtil.concat("0x", Character.getProperty("MasterNameColor", "00FF00")));
|
|
MASTERACCESS_TITLE_COLOR = Integer.decode(StringUtil.concat("0x", Character.getProperty("MasterTitleColor", "00FF00")));
|
|
MASTERACCESS_TITLE_COLOR = Integer.decode(StringUtil.concat("0x", Character.getProperty("MasterTitleColor", "00FF00")));
|
|
ALT_GAME_DELEVEL = Boolean.parseBoolean(Character.getProperty("Delevel", "true"));
|
|
ALT_GAME_DELEVEL = Boolean.parseBoolean(Character.getProperty("Delevel", "true"));
|
|
|
|
+ DECREASE_SKILL_LEVEL = Boolean.parseBoolean(Character.getProperty("DecreaseSkillOnDelevel", "true"));
|
|
ALT_WEIGHT_LIMIT = Double.parseDouble(Character.getProperty("AltWeightLimit", "1"));
|
|
ALT_WEIGHT_LIMIT = Double.parseDouble(Character.getProperty("AltWeightLimit", "1"));
|
|
RUN_SPD_BOOST = Integer.parseInt(Character.getProperty("RunSpeedBoost", "0"));
|
|
RUN_SPD_BOOST = Integer.parseInt(Character.getProperty("RunSpeedBoost", "0"));
|
|
DEATH_PENALTY_CHANCE = Integer.parseInt(Character.getProperty("DeathPenaltyChance", "20"));
|
|
DEATH_PENALTY_CHANCE = Integer.parseInt(Character.getProperty("DeathPenaltyChance", "20"));
|