|
|
|
|
@ -3085,16 +3085,22 @@ public class mbEnums {
@@ -3085,16 +3085,22 @@ public class mbEnums {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public enum ServerConfig { |
|
|
|
|
AERYNTH_ARAC(108, 300001), |
|
|
|
|
DALGOTH_ARAC(192, 300001), |
|
|
|
|
VORGINA_ARAC(162, 300001), |
|
|
|
|
VORGINA_LORE(164, 300001); |
|
|
|
|
|
|
|
|
|
public int mapID; |
|
|
|
|
public int realmMap; |
|
|
|
|
|
|
|
|
|
ServerConfig(int mapID, int realmMap) { |
|
|
|
|
this.mapID = mapID; |
|
|
|
|
MBDB_108("AERYNTH", "ARAC", "MOURNING", 300000), |
|
|
|
|
MBDB_192("DALGOTH", "ARAC", "GOOK", 300001), |
|
|
|
|
MBDB_162("VORGINA", "LORE", "SAEDRON", 300002), |
|
|
|
|
MBDB_164("VORGINA", "ARAC", "THURIN", 300002); |
|
|
|
|
|
|
|
|
|
public final String mapType; |
|
|
|
|
public final String ruleType; |
|
|
|
|
public final String serverName; |
|
|
|
|
public final int realmMap; |
|
|
|
|
|
|
|
|
|
ServerConfig(String mapType, String ruleType, String serverName, int realmMap) { |
|
|
|
|
|
|
|
|
|
this.mapType = mapType; |
|
|
|
|
this.ruleType = ruleType; |
|
|
|
|
this.serverName = serverName; |
|
|
|
|
this.realmMap = realmMap; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|