2017-02-09 23:40:55 +01:00
|
|
|
/* Holds IP of Special Servers */
|
2017-06-02 06:15:45 +02:00
|
|
|
SpecialServerNames = {
|
|
|
|
FulcrumSecretTechnologies: "Fulcrum Secret Technologies Server",
|
|
|
|
CyberSecServer: "CyberSec Server",
|
|
|
|
NiteSecServer: "NiteSec Server",
|
|
|
|
TheBlackHandServer: "The Black Hand Server",
|
|
|
|
BitRunnersServer: "BitRunners Server",
|
|
|
|
TheDarkArmyServer: "The Dark Army Server",
|
|
|
|
DaedalusServer: "Daedalus Server",
|
|
|
|
WorldDaemon: "w0r1d_d43m0n",
|
2017-02-16 19:52:11 +01:00
|
|
|
}
|
2017-06-02 06:15:45 +02:00
|
|
|
function SpecialServerIpsMap() {}
|
2017-02-16 19:52:11 +01:00
|
|
|
|
|
|
|
SpecialServerIpsMap.prototype.addIp = function(name, ip) {
|
|
|
|
this[name] = ip;
|
|
|
|
}
|
|
|
|
|
|
|
|
SpecialServerIpsMap.prototype.toJSON = function() {
|
|
|
|
return Generic_toJSON("SpecialServerIpsMap", this);
|
|
|
|
}
|
|
|
|
|
|
|
|
SpecialServerIpsMap.fromJSON = function(value) {
|
|
|
|
return Generic_fromJSON(SpecialServerIpsMap, value.data);
|
|
|
|
}
|
|
|
|
|
|
|
|
Reviver.constructors.SpecialServerIpsMap = SpecialServerIpsMap();
|
|
|
|
|
|
|
|
SpecialServerIps = null;
|