|
@@ -105,6 +105,7 @@ public final class Config
|
|
public static int MAX_MATK_SPEED;
|
|
public static int MAX_MATK_SPEED;
|
|
public static int MAX_EVASION;
|
|
public static int MAX_EVASION;
|
|
public static byte MAX_SUBCLASS;
|
|
public static byte MAX_SUBCLASS;
|
|
|
|
+ public static byte MAX_SUBCLASS_LEVEL;
|
|
public static int MAX_PVTSTORESELL_SLOTS_DWARF;
|
|
public static int MAX_PVTSTORESELL_SLOTS_DWARF;
|
|
public static int MAX_PVTSTORESELL_SLOTS_OTHER;
|
|
public static int MAX_PVTSTORESELL_SLOTS_OTHER;
|
|
public static int MAX_PVTSTOREBUY_SLOTS_DWARF;
|
|
public static int MAX_PVTSTOREBUY_SLOTS_DWARF;
|
|
@@ -1159,6 +1160,7 @@ public final class Config
|
|
MAX_MATK_SPEED = Integer.parseInt(Character.getProperty("MaxMAtkSpeed", "1999"));
|
|
MAX_MATK_SPEED = Integer.parseInt(Character.getProperty("MaxMAtkSpeed", "1999"));
|
|
MAX_EVASION = Integer.parseInt(Character.getProperty("MaxEvasion", "200"));
|
|
MAX_EVASION = Integer.parseInt(Character.getProperty("MaxEvasion", "200"));
|
|
MAX_SUBCLASS = Byte.parseByte(Character.getProperty("MaxSubclass", "3"));
|
|
MAX_SUBCLASS = Byte.parseByte(Character.getProperty("MaxSubclass", "3"));
|
|
|
|
+ MAX_SUBCLASS_LEVEL = Byte.parseByte(Character.getProperty("MaxSubclassLevel", "80"));
|
|
MAX_PVTSTORESELL_SLOTS_DWARF = Integer.parseInt(Character.getProperty("MaxPvtStoreSellSlotsDwarf", "4"));
|
|
MAX_PVTSTORESELL_SLOTS_DWARF = Integer.parseInt(Character.getProperty("MaxPvtStoreSellSlotsDwarf", "4"));
|
|
MAX_PVTSTORESELL_SLOTS_OTHER = Integer.parseInt(Character.getProperty("MaxPvtStoreSellSlotsOther", "3"));
|
|
MAX_PVTSTORESELL_SLOTS_OTHER = Integer.parseInt(Character.getProperty("MaxPvtStoreSellSlotsOther", "3"));
|
|
MAX_PVTSTOREBUY_SLOTS_DWARF = Integer.parseInt(Character.getProperty("MaxPvtStoreBuySlotsDwarf", "5"));
|
|
MAX_PVTSTOREBUY_SLOTS_DWARF = Integer.parseInt(Character.getProperty("MaxPvtStoreBuySlotsDwarf", "5"));
|