diff --git a/SCtF/DeleteObjects.cs b/SCtF/DeleteObjects.cs index a613ac1..2e997d4 100644 --- a/SCtF/DeleteObjects.cs +++ b/SCtF/DeleteObjects.cs @@ -80,7 +80,7 @@ function deleteNonSCtFObjectsFromMap() deleteObjectsFromGroupByType(MissionGroup, "Turret"); deleteObjectsFromGroupByType(MissionGroup, "StaticShape"); deleteObjectsFromGroupByType(MissionGroup, "TSStatic"); - deleteObjectsFromGroupByType(MissionGroup, "ForceFieldBare"); + // deleteObjectsFromGroupByType(MissionGroup, "ForceFieldBare"); deleteObjectsFromGroupByType(MissionGroup, "FlyingVehicle"); deleteObjectsFromGroupByType(MissionGroup, "WheeledVehicle"); deleteObjectsFromGroupByType(MissionGroup, "Waypoint"); diff --git a/prefs/SctfPrefs.cs b/prefs/SctfPrefs.cs new file mode 100644 index 0000000..fb4128d --- /dev/null +++ b/prefs/SctfPrefs.cs @@ -0,0 +1,132 @@ +// *************************************************************************************************** +// Items with a one in front of them are banned items. Items with a zero in front of them are allowed. +// +// Change the one's and zero's to your liking. Its pretty straight foward, each armor size gets it's +// own banlist. +// +// You can switch armor classes by issuing a commandToServer('ArmorDefaults', "Light"); +// *************************************************************************************************** + +function setArmorDefaults(%armor) +{ + switch$ ( %armor ) + { + case "Light": // Set your servers Light armor bans + // Packs + $InvBanList[SCtF, "TurretOutdoorDeployable"] = 1; + $InvBanList[SCtF, "TurretIndoorDeployable"] = 1; + $InvBanList[SCtF, "ElfBarrelPack"] = 1; + $InvBanList[SCtF, "MortarBarrelPack"] = 1; + $InvBanList[SCtF, "PlasmaBarrelPack"] = 1; + $InvBanList[SCtF, "AABarrelPack"] = 1; + $InvBanList[SCtF, "AmmoPack"] = 1; + $InvBanList[SCtF, "CloakingPack"] = 1; + $InvBanList[SCtF, "MotionSensorDeployable"] = 1; + $InvBanList[SCtF, "PulseSensorDeployable"] = 1; + $InvBanList[SCtF, "TurretOutdoorDeployable"] = 1; + $InvBanList[SCtF, "TurretIndoorDeployable"] = 1; + $InvBanList[SCtF, "EnergyPack"] = 0; + $InvBanList[SCtF, "RepairPack"] = 1; + $InvBanList[SCtF, "SatchelCharge"] = 1; + $InvBanList[SCtF, "SensorJammerPack"] = 1; + $InvBanList[SCtF, "ShieldPack"] = 1; + $InvBanList[SCtF, "TargetingLaser"] = 0; + // Weapons + $InvBanList[SCtF, "Blaster"] = 0; + $InvBanList[SCtF, "Chaingun"] = 0; + $InvBanList[SCtF, "Disc"] = 0; + $InvBanList[SCtF, "ELFGun"] = 1; + $InvBanList[SCtF, "GrenadeLauncher"] = 0; + $InvBanList[SCtF, "MissileBarrelPack"] = 1; + $InvBanList[SCtF, "MissileLauncher"] = 1; + $InvBanList[SCtF, "Mortar"] = 1; + $InvBanList[SCtF, "Plasma"] = 0; + $InvBanList[SCtF, "SniperRifle"] = 1; + $InvBanList[SCtF, "ShockLance"] = 0; + // Misc + $InvBanList[SCtF, "Mine"] = 0; + $InvBanList[SCtF, "ConcussionGrenade"] = 1; + $InvBanList[SCtF, "CameraGrenade"] = 1; + $InvBanList[SCtF, "FlareGrenade"] = 1; + $InvBanList[SCtF, "FlashGrenade"] = 1; + $InvBanList[SCtF, "Grenade"] = 0; + + case "Medium": // Set your servers Medium armor bans + // Packs + $InvBanList[SCtF, "TurretOutdoorDeployable"] = 1; + $InvBanList[SCtF, "TurretIndoorDeployable"] = 1; + $InvBanList[SCtF, "ElfBarrelPack"] = 1; + $InvBanList[SCtF, "MortarBarrelPack"] = 1; + $InvBanList[SCtF, "PlasmaBarrelPack"] = 1; + $InvBanList[SCtF, "AABarrelPack"] = 1; + $InvBanList[SCtF, "AmmoPack"] = 1; + $InvBanList[SCtF, "CloakingPack"] = 1; + $InvBanList[SCtF, "MotionSensorDeployable"] = 1; + $InvBanList[SCtF, "PulseSensorDeployable"] = 1; + $InvBanList[SCtF, "TurretOutdoorDeployable"] = 1; + $InvBanList[SCtF, "TurretIndoorDeployable"] = 1; + $InvBanList[SCtF, "EnergyPack"] = 0; + $InvBanList[SCtF, "RepairPack"] = 0; + $InvBanList[SCtF, "SatchelCharge"] = 1; + $InvBanList[SCtF, "SensorJammerPack"] = 1; + $InvBanList[SCtF, "ShieldPack"] = 1; + // Weapons + $InvBanList[SCtF, "Blaster"] = 1; + $InvBanList[SCtF, "Chaingun"] = 0; + $InvBanList[SCtF, "Disc"] = 0; + $InvBanList[SCtF, "ELFGun"] = 0; + $InvBanList[SCtF, "GrenadeLauncher"] = 0; + $InvBanList[SCtF, "MissileBarrelPack"] = 1; + $InvBanList[SCtF, "MissileLauncher"] = 1; + $InvBanList[SCtF, "Mortar"] = 1; + $InvBanList[SCtF, "Plasma"] = 0; + $InvBanList[SCtF, "SniperRifle"] = 1; + $InvBanList[SCtF, "ShockLance"] = 1; + // Misc + $InvBanList[SCtF, "Mine"] = 0; + $InvBanList[SCtF, "ConcussionGrenade"] = 0; + $InvBanList[SCtF, "CameraGrenade"] = 1; + $InvBanList[SCtF, "FlareGrenade"] = 1; + $InvBanList[SCtF, "FlashGrenade"] = 1; + $InvBanList[SCtF, "Grenade"] = 0; + + case "Heavy": // Set your servers Heavy armor bans + // Packs + $InvBanList[SCtF, "TurretOutdoorDeployable"] = 1; + $InvBanList[SCtF, "TurretIndoorDeployable"] = 1; + $InvBanList[SCtF, "ElfBarrelPack"] = 1; + $InvBanList[SCtF, "MortarBarrelPack"] = 1; + $InvBanList[SCtF, "PlasmaBarrelPack"] = 1; + $InvBanList[SCtF, "AABarrelPack"] = 1; + $InvBanList[SCtF, "AmmoPack"] = 1; + $InvBanList[SCtF, "CloakingPack"] = 1; + $InvBanList[SCtF, "MotionSensorDeployable"] = 1; + $InvBanList[SCtF, "PulseSensorDeployable"] = 1; + $InvBanList[SCtF, "TurretOutdoorDeployable"] = 1; + $InvBanList[SCtF, "TurretIndoorDeployable"] = 1; + $InvBanList[SCtF, "EnergyPack"] = 0; + $InvBanList[SCtF, "RepairPack"] = 0; + $InvBanList[SCtF, "SatchelCharge"] = 1; + $InvBanList[SCtF, "SensorJammerPack"] = 1; + $InvBanList[SCtF, "ShieldPack"] = 0; + // Weapons + $InvBanList[SCtF, "Blaster"] = 1; + $InvBanList[SCtF, "Chaingun"] = 0; + $InvBanList[SCtF, "Disc"] = 0; + $InvBanList[SCtF, "ELFGun"] = 1; + $InvBanList[SCtF, "GrenadeLauncher"] = 0; + $InvBanList[SCtF, "MissileBarrelPack"] = 1; + $InvBanList[SCtF, "MissileLauncher"] = 1; + $InvBanList[SCtF, "Mortar"] = 0; + $InvBanList[SCtF, "Plasma"] = 0; + $InvBanList[SCtF, "SniperRifle"] = 1; + $InvBanList[SCtF, "ShockLance"] = 1; + // Misc + $InvBanList[SCtF, "Mine"] = 0; + $InvBanList[SCtF, "ConcussionGrenade"] = 1; + $InvBanList[SCtF, "CameraGrenade"] = 1; + $InvBanList[SCtF, "FlareGrenade"] = 1; + $InvBanList[SCtF, "FlashGrenade"] = 1; + $InvBanList[SCtF, "Grenade"] = 0; + } +} diff --git a/prefs/evo_mapRotation.cs b/prefs/evo_mapRotation.cs new file mode 100644 index 0000000..e28fbfc --- /dev/null +++ b/prefs/evo_mapRotation.cs @@ -0,0 +1,411 @@ +// Use of this file +// To add a new map follow this rules: +// 1. Find the file name, ending in .mis (ie BeggarsRun.mis) +// 2. Add a line with this syntact: addRotationMap(filename, gametype, %ffa, %cycle); +// +// %ffa = changing this to 0, will remove the map from the FFA mode +// %cycle = changing this to 0 will remove the map from the FFA cycle, but not from the rotation (optional) +// if %ffa is 0, %cycle is useless +// +// Note: filename must be written without .mis +// +// Example: addRotationMap(BeggarsRun, CTF, 1, 1); +// Beggar's Run will be in the FFA mapRotation. It's in the cycle and can be voted +// +// Example: addRotationMap(BeggarsRun, CTF, 1, 0); +// Beggar's Run will be in the FFA mapRotation. It's not in the cycle, but can be voted +// +// Example: addRotationMap(BeggarsRun, CTF, 0); +// Beggar's Run won't be in the FFA mapRotation. It's not in the cycle and can't be voted +// +// Info: +// If you don't want a map to be played neither in Tournement Mode, write // at the beginning of the line (or delete the line) +// If you don't want a gametype to be played, just don't add any map of that gametype +// Some Mods (ie LakLakRabbit) use own maps. To use this mods, you must add the maps in this file +// %cycle variable is optional and if not included the map will always be in the cycle (if %ffa is 1). + + +// ****************************** +// * Capture The Flag Maps * +// ****************************** + +addRotationMap("SmallCrossing", CTF, 1, 1); +addRotationMap("HighOctane", CTF, 1, 1); +addRotationMap("RoundTheMountain", CTF, 1, 1); +addRotationMap("S5_Massive", CTF, 1, 1); +addRotationMap("TheFray", CTF, 1, 1); +addRotationMap("TWL2_Skylight", CTF, 1, 1); +addRotationMap("Rollercoaster_nef", CTF, 1, 1); +addRotationMap("SmallTimeCTF", CTF, 1, 1); +addRotationMap("TWL2_Ocular", CTF, 1, 1); +addRotationMap("S5_Damnation", CTF, 1, 1); +addRotationMap("TWL2_JaggedClaw", CTF, 1, 1); +addRotationMap("Logans_Run", CTF, 1, 1); +addRotationMap("S5_Mordacity", CTF, 1, 1); +addRotationMap("Dire", CTF, 1, 1); +addRotationMap("berlard", CTF, 1, 1); +addRotationMap("DangerousCrossing_nef", CTF, 1, 1); +addRotationMap("TitForTat", CTF, 1, 1); +addRotationMap("Signal", CTF, 1, 1); +addRotationMap("Mac_FlagArena", CTF, 1, 1); +addRotationMap("S5_Centaur", CTF, 1, 1); +addRotationMap("S8_Cardiac", CTF, 1, 1); +addRotationMap("CirclesEdge", CTF, 1, 1); +addRotationMap("S5_Icedance", CTF, 1, 1); +addRotationMap("Bulwark", CTF, 1, 1); +addRotationMap("Discord", CTF, 1, 1); +addRotationMap("TWL2_Hildebrand", CTF, 1, 1); +addRotationMap("NatureMagic", CTF, 1, 1); +addRotationMap("DesertofDeath_nef", CTF, 0, 0); +addRotationMap("Pariah", CTF, 1, 1); +addRotationMap("SmallMelee", CTF, 1, 1); +addRotationMap("Gorgon", CTF, 1, 0); +addRotationMap("Hillside", CTF, 1, 0); +addRotationMap("IceRidge_nef", CTF, 1, 0); +addRotationMap("Lakefront", CTF, 1, 1); +addRotationMap("Magmatic", CTF, 1, 1); +addRotationMap("Raindance_nef", CTF, 1, 1); +addRotationMap("Ramparts", CTF, 1, 0); +addRotationMap("Sandstorm", CTF, 1, 0); +addRotationMap("Scarabrae_nef", CTF, 0, 0); +addRotationMap("ShockRidge", CTF, 1, 0); +addRotationMap("Starfallen", CTF, 1, 0); +addRotationMap("Stonehenge_nef", CTF, 1, 0); +addRotationMap("Sub-zero", CTF, 1, 0); +addRotationMap("Surreal", CTF, 1, 0); +addRotationMap("Titan", CTF, 0, 0); +addRotationMap("Extractor", CTF, 1, 0); +addRotationMap("AstersDescent", CTF, 1, 0); +addRotationMap("Azoth", CTF, 1, 0); +addRotationMap("BattleGrove", CTF, 1, 0); +addRotationMap("BerylBasin", CTF, 1, 0); +addRotationMap("Durango", CTF, 1, 0); +addRotationMap("DustLust", CTF, 1, 0); +addRotationMap("Infernus", CTF, 1, 1); +addRotationMap("Island", CTF, 1, 0); +addRotationMap("Disjointed", CTF, 1, 0); +addRotationMap("FullCircle", CTF, 1, 0); +addRotationMap("Headstone", CTF, 1, 1); +addRotationMap("IceGulch", CTF, 1, 0); +addRotationMap("JadeValley", CTF, 1, 0); +addRotationMap("Mirage", CTF, 1, 1); +addRotationMap("MountainMist", CTF, 1, 0); +addRotationMap("Peak", CTF, 1, 0); +addRotationMap("Pendulum", CTF, 1, 0); +addRotationMap("Snowcone", CTF, 1, 0); +addRotationMap("TenebrousCTF", CTF, 1, 1); +addRotationMap("MoonDance", CTF, 1, 1); +addRotationMap("Circleofstones", CTF, 1, 1); +addRotationMap("S5_Drache", CTF, 1, 0); +addRotationMap("S5_HawkingHeat", CTF, 1, 0); +addRotationMap("S5_Mimicry", CTF, 1, 1); +addRotationMap("S5_Misadventure", CTF, 1, 0); +addRotationMap("S5_Reynard", CTF, 1, 0); +addRotationMap("S5_Sherman", CTF, 1, 0); +addRotationMap("S5_Silenus", CTF, 1, 0); +addRotationMap("S5_Woodymyrk", CTF, 1, 0); +addRotationMap("S8_CentralDogma", CTF, 1, 0); +addRotationMap("S8_Geothermal", CTF, 1, 0); +addRotationMap("S8_Mountking", CTF, 1, 0); +addRotationMap("S8_Opus", CTF, 1, 1); +addRotationMap("S8_Zilch", CTF, 1, 0); +addRotationMap("TWL2_Bleed", CTF, 1, 0); +addRotationMap("TWL2_BlueMoon", CTF, 1, 0); +addRotationMap("TWL2_CanyonCrusadeDeluxe", CTF, 1, 1); +addRotationMap("TWL2_Celerity", CTF, 1, 1); +addRotationMap("TWL2_CloakOfNight", CTF, 1, 0); +addRotationMap("TWL2_Crevice", CTF, 1, 0); +addRotationMap("TWL2_Dissention", CTF, 1, 0); +addRotationMap("TWL2_Drifts", CTF, 1, 0); +addRotationMap("TWL2_Drorck", CTF, 1, 0); +addRotationMap("TWL2_FrozenGlory", CTF, 1, 0); +addRotationMap("TWL2_FrozenHope", CTF, 1, 1); +addRotationMap("TWL2_IceDagger", CTF, 1, 0); +addRotationMap("TWL2_Magnum", CTF, 1, 1); +addRotationMap("TWL2_MidnightMayhemDeluxe", CTF, 1, 0); +addRotationMap("TWL2_MuddySwamp", CTF, 1, 0); +addRotationMap("TWL2_Norty", CTF, 1, 0); +addRotationMap("TWL2_RoughLand", CTF, 1, 0); +addRotationMap("TWL2_Ruined", CTF, 1, 0); +addRotationMap("TWL_Abaddon", CTF, 1, 0); +addRotationMap("TWL_BaNsHee", CTF, 1, 0); +addRotationMap("TWL_BeachBlitz", CTF, 1, 0); +addRotationMap("TWL_Boss", CTF, 1, 0); +addRotationMap("TWL_Chokepoint", CTF, 1, 0); +addRotationMap("TWL_Cinereous", CTF, 1, 1); +addRotationMap("TWL_Crossfire", CTF, 1, 1); +addRotationMap("TWL_NoShelter", CTF, 1, 0); +addRotationMap("TWL_OsIris", CTF, 1, 1); +addRotationMap("TWL_Clusterfuct", CTF, 1, 0); +addRotationMap("TWL_Curtilage", CTF, 1, 0); +addRotationMap("TWL_Damnation", CTF, 1, 1); +addRotationMap("TWL_DangerousCrossing", CTF, 1, 1); +addRotationMap("TWL_DeadlyBirdsSong", CTF, 1, 0); +addRotationMap("TWL_Deserted", CTF, 1, 0); +addRotationMap("TWL_Feign", CTF, 1, 1); +addRotationMap("TWL_Frostclaw", CTF, 1, 0); +addRotationMap("TWL_Frozen", CTF, 1, 0); +addRotationMap("TWL_Harvester", CTF, 1, 0); +addRotationMap("TWL_Horde", CTF, 1, 0); +addRotationMap("TWL_Katabatic", CTF, 1, 0); +addRotationMap("TWL_Magamatic", CTF, 1, 0); +addRotationMap("TWL_Neve", CTF, 0, 0); +addRotationMap("TWL_Pandemonium", CTF, 1, 0); +addRotationMap("TWL_Ramparts", CTF, 1, 0); +addRotationMap("TWL_Sandstorm", CTF, 1, 0); +addRotationMap("TWL_Starfallen", CTF, 1, 0); +addRotationMap("TWL_Stonehenge", CTF, 1, 1); +addRotationMap("TWL_SubZero", CTF, 1, 0); +addRotationMap("TWL_Titan", CTF, 1, 0); +addRotationMap("TWL_WilderZone", CTF, 1, 1); +addRotationMap("TWL_Snowblind", CTF, 1, 0); +addRotationMap("TWL_WoodyMyrk", CTF, 0, 0); +addRotationMap("Vauban", CTF, 1, 0); +addRotationMap("Glade", CTF, 1, 0); +addRotationMap("oasisintensity", CTF, 1, 1); +addRotationMap("WindyGap", CTF, 1, 0); +addRotationMap("OctoberRust", CTF, 1, 0); +addRotationMap("HostileLoch", CTF, 1, 1); +addRotationMap("DevilsElbow", CTF, 1, 0); +addRotationMap("Pantheon", CTF, 1, 0); +addRotationMap("Coppersky", CTF, 1, 0); +addRotationMap("Fenix", CTF, 1, 1); +addRotationMap("SuperHappyBouncyFunTime", CTF, 1, 1); +addRotationMap("CloudCity", CTF, 1, 0); +addRotationMap("ConstructionYard", CTF, 1, 0); +addRotationMap("Archipelago", CTF, 0, 0); +addRotationMap("BeggarsRun", CTF, 1, 1); +addRotationMap("Damnation", CTF, 0, 0); +addRotationMap("DeathBirdsFly", CTF, 0, 0); +addRotationMap("Desiccator", CTF, 0, 0); +addRotationMap("DustToDust", CTF, 0, 0); +addRotationMap("Firestorm", CTF, 1, 0); +addRotationMap("Katabatic", CTF, 1, 0); +addRotationMap("Minotaur", CTF, 1, 1); +addRotationMap("Quagmire", CTF, 0, 0); +addRotationMap("Recalescence", CTF, 0, 0); +addRotationMap("Reversion", CTF, 0, 0); +addRotationMap("RiverDance", CTF, 1, 0); +addRotationMap("Sanctuary", CTF, 0, 0); +addRotationMap("Slapdash", CTF, 0, 0); +addRotationMap("ThinIce", CTF, 0, 0); +addRotationMap("Tombstone", CTF, 0, 0); +addRotationMap("AcidRain", CTF, 1, 0); +addRotationMap("Blastside_nef", CTF, 1, 0); +addRotationMap("Broadside_nef", CTF, 0, 0); +addRotationMap("Confusco", CTF, 1, 0); +addRotationMap("Camelland", CTF, 1, 0); +addRotationMap("SandOcean", CTF, 1, 0); +addRotationMap("HighTrepidation", CTF, 1, 0); +addRotationMap("SmallDesertofDeath", CTF, 1, 0); +addRotationMap("Agorazscium", CTF, 1, 0); +addRotationMap("ShortFall", CTF, 1, 1); +addRotationMap("ArenaDome", CTF, 1, 1); +addRotationMap("BasinFury", CTF, 1, 0); +addRotationMap("Cadaver", CTF, 1, 0); +addRotationMap("Fallout", CTF, 1, 0); +addRotationMap("EivoItoxico", CTF, 1, 0); +addRotationMap("Einfach", CTF, 0, 0); +addRotationMap("Nightdance", CTF, 1, 0); +addRotationMap("PicnicTable", CTF, 1, 1); +addRotationMap("TheClocktower", CTF, 1, 0); +addRotationMap("Surro", CTF, 1, 0); +addRotationMap("StarIce", CTF, 1, 0); +addRotationMap("SoylentGreen", CTF, 1, 1); +addRotationMap("ks_braistv" , CTF, 1, 0); +addRotationMap("Hostility", CTF, 1, 0); +addRotationMap("HighWire", CTF, 1, 0); +addRotationMap("FilteredDust", CTF, 1, 0); +addRotationMap("CloudBurst", CTF, 1, 0); +addRotationMap("CloseCombat", CTF, 1, 1); +addRotationMap("Choke", CTF, 1, 0); + + +// ******************** +// * LakRabbit Maps * +// ******************** + + +addRotationMap("VaubanLak", LakRabbit, 1, 1); +addRotationMap("MiniSunDried", LakRabbit, 1, 1); +addRotationMap("SkinnyDipLak", LakRabbit, 1, 1); +addRotationMap("Sundance", LakRabbit, 1, 1); +addRotationMap("TWL_BeachBlitzLak", LakRabbit, 1, 1); +addRotationMap("SunDriedLak", LakRabbit, 1, 1); +addRotationMap("SaddiesHill", LakRabbit, 1, 1); +addRotationMap("GodsRiftLak", LakRabbit, 1, 0); +addRotationMap("HavenLak", LakRabbit, 1, 1); +addRotationMap("LushLak", LakRabbit, 1, 1); +addRotationMap("PhasmaDustLak", LakRabbit, 1, 1); +addRotationMap("BoxLak", LakRabbit, 1, 0); +addRotationMap("TreasureIslandLak", LakRabbit, 1, 1); +addRotationMap("DamnnationLak", LakRabbit, 1, 0); +addRotationMap("DesertofDeathLak", LakRabbit, 1, 1); +addRotationMap("Raindance_nefLak", LakRabbit, 1, 1); +addRotationMap("SolsDescentLak", LakRabbit, 1, 1); +addRotationMap("Crater71Lak", LakRabbit, 1, 1); +addRotationMap("TitanLak", LakRabbit, 1, 0); +addRotationMap("TWL2_MuddySwampLak", LakRabbit, 0, 0); +addRotationMap("SandStormLak", LakRabbit, 1, 0); +addRotationMap("BeggarsRunLak", LakRabbit, 1, 0); +addRotationMap("Tibbaw", LakRabbit, 1, 0); +addRotationMap("MagmaticLak", LakRabbit, 1, 0); +addRotationMap("HillsOfSorrow", LakRabbit, 1, 1); +addRotationMap("EscaladeLak", LakRabbit, 1, 0); +addRotationMap("Arrakis", LakRabbit, 1, 0); +addRotationMap("EquinoxLak", LakRabbit, 1, 0); +addRotationMap("FrozenFuryLak", LakRabbit, 1, 0); +addRotationMap("S8_GeothermalLak", LakRabbit, 1, 1); + + + + + + +// ************************ +// * DuelMod Maps * +// ************************ + +//addRotationMap("AgentsOfFortune", Duel, 0, 0); +//addRotationMap("Casern_Cavite", Duel, 0, 0); +//addRotationMap("Equinox", Duel, 1, 1); +//addRotationMap("Escalade", Duel, 1, 1); +//addRotationMap("Fracas", Duel, 0, 0); +//addRotationMap("Invictus", Duel, 0, 0); +//addRotationMap("MyrkWood", Duel, 1, 1); +//addRotationMap("Oasis", Duel, 1, 1); +//addRotationMap("Pyroclasm", Duel, 1, 1); +//addRotationMap("Rasp", Duel, 1, 1); +//addRotationMap("SunDried", Duel, 1, 1); +//addRotationMap("Talus", Duel, 0, 0); +//addRotationMap("Underhill", Duel, 0, 0); +//addRotationMap("Whiteout", Duel, 1, 1); +addRotationMap("Tombstone", Duel, 1, 1); +//addRotationMap("VaubanLak", Duel, 1, 1); +//addRotationMap("DesertofDeathLak", Duel, 1, 1); + + + + + +// ************************ +// * SpawnCTF Maps * +// ************************ + +addRotationMap("BeggarsRun", sctf, 1, 0); +addRotationMap("Damnation", sctf, 0, 0); +addRotationMap("DustToDust", sctf, 1, 0); +addRotationMap("Firestorm", sctf, 1, 1); +addRotationMap("Minotaur", sctf, 0, 0); +addRotationMap("DangerousCrossing_nef", sctf, 1, 0); +addRotationMap("DesertofDeath_nef", sctf, 0, 0); +addRotationMap("Gorgon", sctf, 1, 1); +addRotationMap("Titan", sctf, 1, 0); +addRotationMap("SmallCrossing", sctf, 1, 1); +addRotationMap("Signal", sctf, 1, 1); +addRotationMap("Mac_FlagArena", sctf, 1, 1); +addRotationMap("RoundTheMountain", sctf, 1, 1); +addRotationMap("Extractor", sctf, 1, 0); +addRotationMap("AstersDescent", sctf, 1, 1); +addRotationMap("Azoth", sctf, 1, 0); +addRotationMap("CirclesEdge", sctf, 1, 1); +addRotationMap("DustLust", sctf, 1, 1); +addRotationMap("HighOctane", sctf, 1, 1); +addRotationMap("Island", sctf, 1, 1); +addRotationMap("Dire", sctf, 1, 1); +addRotationMap("Disjointed", sctf, 1, 0); +addRotationMap("Headstone", sctf, 1, 0); +addRotationMap("JadeValley", sctf, 1, 1); +addRotationMap("Mirage", sctf, 1, 1); +addRotationMap("Peak", sctf, 1, 0); +addRotationMap("Snowcone", sctf, 1, 1); +addRotationMap("Tenebroussctf", sctf, 1, 1); +addRotationMap("TheFray", sctf, 1, 1); +addRotationMap("S5_Centaur", sctf, 1, 0); +addRotationMap("S5_Damnation", sctf, 1, 1); +addRotationMap("S5_Drache", sctf, 1, 1); +addRotationMap("S5_HawkingHeat", sctf, 1, 0); +addRotationMap("S5_Icedance", sctf, 1, 1); +addRotationMap("S5_Massive", sctf, 1, 1); +addRotationMap("S5_Mimicry", sctf, 1, 1); +addRotationMap("S5_Misadventure", sctf, 1, 0); +addRotationMap("S5_Mordacity", sctf, 1, 1); +addRotationMap("S5_Reynard", sctf, 1, 0); +addRotationMap("S5_Sherman", sctf, 1, 0); +addRotationMap("S5_Silenus", sctf, 1, 1); +addRotationMap("S5_Woodymyrk", sctf, 1, 1); +addRotationMap("S8_Cardiac", sctf, 1, 1); +addRotationMap("S8_Geothermal", sctf, 0, 0); +addRotationMap("S8_Opus", sctf, 1, 1); +addRotationMap("S8_Zilch", sctf, 1, 1); +addRotationMap("TWL2_CanyonCrusadeDeluxe", sctf, 1, 1); +addRotationMap("TWL2_Celerity", sctf, 1, 0); +addRotationMap("TWL2_Crevice", sctf, 1, 0); +addRotationMap("TWL2_Drifts", sctf, 1, 0); +addRotationMap("TWL2_Drorck", sctf, 1, 1); +addRotationMap("TWL2_FrozenGlory", sctf, 1, 1); +addRotationMap("TWL2_FrozenHope", sctf, 1, 0); +addRotationMap("TWL2_Hildebrand", sctf, 1, 1); +addRotationMap("TWL2_IceDagger", sctf, 1, 0); +addRotationMap("TWL2_JaggedClaw", sctf, 1, 1); +addRotationMap("TWL2_MidnightMayhemDeluxe", sctf, 1, 1); +addRotationMap("TWL2_MuddySwamp", sctf, 0, 0); +addRotationMap("TWL2_Norty", sctf, 1, 1); +addRotationMap("TWL2_Ocular", sctf, 1, 1); +addRotationMap("TWL2_RoughLand", sctf, 0, 0); +addRotationMap("TWL2_Ruined", sctf, 0, 0); +addRotationMap("TWL2_Skylight", sctf, 1, 1); +addRotationMap("TWL_BaNsHee", sctf, 1, 0); +addRotationMap("TWL_BeachBlitz", sctf, 1, 1); +addRotationMap("TWL_Boss", sctf, 1, 0); +addRotationMap("TWL_Cinereous", sctf, 1, 1); +addRotationMap("TWL_Crossfire", sctf, 1, 1); +addRotationMap("TWL_NoShelter", sctf, 1, 0); +addRotationMap("TWL_OsIris", sctf, 1, 1); +addRotationMap("TWL_Clusterfuct", sctf, 1, 1); +addRotationMap("TWL_Curtilage", sctf, 1, 1); +addRotationMap("TWL_Damnation", sctf, 0, 0); +addRotationMap("TWL_DangerousCrossing", sctf, 1, 1); +addRotationMap("TWL_DeadlyBirdsSong", sctf, 1, 0); +addRotationMap("TWL_Deserted", sctf, 1, 1); +addRotationMap("TWL_Feign", sctf, 1, 1); +addRotationMap("TWL_Frostclaw", sctf, 0, 0); +addRotationMap("TWL_Magamatic", sctf, 1, 1); +addRotationMap("TWL_Neve", sctf, 0, 0); +addRotationMap("TWL_Pandemonium", sctf, 1, 1); +addRotationMap("TWL_Ramparts", sctf, 1, 0); +addRotationMap("TWL_Stonehenge", sctf, 1, 1); +addRotationMap("TWL_Titan", sctf, 1, 0); +addRotationMap("TWL_WilderZone", sctf, 1, 1); +addRotationMap("oasisintensity", sctf, 1, 1); +addRotationMap("DehSwamp", sctf, 1, 0); +addRotationMap("TWL_Rollercoaster", sctf, 1, 1); +addRotationMap("berlard", sctf, 1, 1); +addRotationMap("HostileLoch", sctf, 1, 1); +addRotationMap("DevilsElbow", sctf, 1, 0); +addRotationMap("DuelersDelight", sctf, 1, 1); +addRotationMap("SuperHappyBouncyFunTime", sctf, 1, 0); +addRotationMap("Camelland", sctf, 1, 0); +addRotationMap("SmallTimeCTF", sctf, 1, 1); +addRotationMap("Pariah", sctf, 1, 1); +addRotationMap("SmallDesertofDeath", sctf, 1, 1); +addRotationMap("SmallMelee", sctf, 1, 1); +addRotationMap("ShortFall", sctf, 1, 1); +addRotationMap("ArenaDome", sctf, 1, 1); +addRotationMap("Bulwark", sctf, 1, 1); +addRotationMap("Discord", sctf, 1, 1); +addRotationMap("Fallout", sctf, 1, 1); +addRotationMap("SoylentGreen", sctf, 1, 1); +addRotationMap("TitForTat", sctf, 1, 1); +addRotationMap("CloseCombat", sctf, 1, 1); + + + +// ************************ +// * Siege Maps * +// ************************ + +//addRotationMap("Isleofman", siege, 1, 1); +//addRotationMap("Trident", siege, 1, 1); +//addRotationMap("Alcatraz", siege, 1, 1); + diff --git a/prefs/serverPrefs.cs b/prefs/serverPrefs.cs new file mode 100644 index 0000000..f324082 --- /dev/null +++ b/prefs/serverPrefs.cs @@ -0,0 +1,1293 @@ +$Host::AdminList = ""; +$Host::AdminPassword = "changeme"; +$Host::allowAdminPlayerVotes = "0"; +$Host::AllowMapScript = "True"; +$Host::BanTime = 2147483647; +$Host::BotCount = 2; +$Host::BotsEnabled = "0"; +$Host::ClassicAdminLogPath = "prefs"; +$Host::ClassicAllowConsoleAccess = 0; +$Host::ClassicAntiTurtleTime = 5; +$Host::ClassicAutoPWEnabled = 0; +$Host::ClassicAutoPWPassword = "taco"; +$Host::ClassicAutoPWPlayerCount = 30; +$Host::ClassicAutoRestartServer = 0; +$Host::ClassicBadWordFilter = 0; +$Host::ClassicBalancedBots = 0; +$Host::ClassicCanKickBots = 0; +$Host::ClassicConnectLog = 0; +$Host::ClassicConnLogPath = "prefs"; +$Host::ClassicCycleMisTypes = 0; +$Host::ClassicEchoChat = 0; +$Host::ClassicFairTeams = 1; +$Host::ClassicLimitArmors = 0; +$Host::ClassicLoadBlasterChanges = 0; +$Host::ClassicLoadHavocChanges = 0; +$Host::ClassicLoadMineChanges = 0; +$Host::ClassicLoadMissileChanges = 0; +$Host::ClassicLoadMortarChanges = 0; +$Host::ClassicLoadPlasmaTurretChanges = 0; +$Host::ClassicLoadPlayerChanges = 1; +$Host::ClassicLoadSniperChanges = 0; +$Host::ClassicLoadTR2Gametype = 0; +$Host::ClassicLoadVRamChanges = 0; +$Host::ClassicLogEchoEnabled = 0; +$Host::ClassicMaxTelepads = 3; +$Host::ClassicNoNullVoiceSpam = 0; +$Host::ClassicPacketRateToClient = 32; +$Host::ClassicPacketSize = 450; +$Host::ClassicRandomizeTeams = 1; +$Host::ClassicRandomMissions = 0; +$Host::ClassicRandomMisTypes = 0; +$Host::ClassicRestartTime = 12; +$Host::ClassicSuperAdminPassword = "changeme1"; +$Host::ClassicTelnet = 0; +$Host::ClassicTelnetListenPass = "changeme"; +$Host::ClassicTelnetPassword = "changeme"; +$Host::ClassicTelnetPort = 666; +$Host::ClassicTkLimit = 0; +$Host::ClassicUseHighPerformanceCounter = 0; +$Host::CRCTextures = 0; +$Host::Dedicated = 1; +$Host::DefenseTurret::Active = 0; +$Host::DefenseTurret::MaxWptHeight = 10; +$Host::DefenseTurret::Optional = 0; +$Host::DefenseTurret::RequiredInTourney = 0; +$Host::EnableLakUnlimitedDJ = 1; +$Host::EvoAdminAdmin = 0; +$Host::EvoAdminBan = 0; +$Host::EvoAdminClanLock = 0; +$Host::EvoAdminClearServer = 0; +$Host::EvoAdminCRCCheck = 0; +$Host::EvoAdminLogging = 1; +$Host::EvoAdminMaxPlayers = 20; +$Host::EvoAdminMinPlayers = 20; +$Host::EvoAdminPassVote = 1; +$Host::EvoAdminReset = 0; +$Host::EvoAdminServerPW = 0; +$Host::EvoAdminStopVotes = 1; +$Host::EvoAdminWhois = 0; +$Host::EvoAllowAdminVoteGameType = 1; +$Host::EvoAllowPlayerVoteChangeMission = 1; +$Host::EvoAllowPlayerVoteGameType = 1; +$Host::EvoAllowPlayerVoteTeamDamage = 0; +$Host::EvoAllowPlayerVoteTimeLimit = 1; +$Host::EvoAllowPlayerVoteTournamentMode = 0; +$Host::EvoAutoPWTourneyNoRemove = 1; +$Host::EvoAveragePings = 1; +$Host::EvoBanListFile = "prefs/evo_BanList.cs"; +$Host::EvoBlockSuperAdminWhois = 0; +$Host::EvoCannedChatLogging = 0; +$Host::EvoCannedSpamAllowed = 1; +$Host::EvoChatConsole = 1; +$Host::EvoChatLogging = 0; +$Host::EvoConnectLogging = 0; +$Host::EvoCustomMapRotation = 1; +$Host::EvoCustomMapRotationFile = "prefs/evo_mapRotation.cs"; +$Host::EvoDailyHour = "00:00"; +$Host::EvoDailyLogs = 0; +$Host::EvoDebugHTTP = 0; +$Host::EvoDefaultLeaseLevel = 1; +$Host::EvoDefaultsLoaded = 1; +$Host::EvoDefaultTimeLimit = 1; +$Host::EvoFairTeams = 1; +$Host::EvoForcedVotes = 1; +$Host::EvoFullServerPWAddAllowed = 4; +$Host::EvoFullServerPWEnabled = 0; +$Host::EvoFullServerPWPassword = "taco"; +$Host::EvoGameFixes = 1; +$Host::EvoKickObservers = 0; +$Host::EvoLeaseInterval = 0; +$Host::EvoLeaseLocation = "prefs/leasedSA.txt"; +$Host::EvoMOTD = "TacoStand Lak\nServer Hosted by Vultr\nJoin our Discord @ TacoStand.tk"; +$Host::EvoMOTDlines = 3; +$Host::EvoMOTDtime = 6; +$Host::EvoMuteSpamFX = 0; +$Host::EvoNoBaseRapeClassicPlayerCount = 12; +$Host::EvoNoBaseRapeEnabled = 1; +$Host::EvoNoBaseRapePlayerCount = 12; +$Host::EvoObserveFlag = 1; +$Host::EvoOneMapOnly = 0; +$Host::EvoPreMatchCannedSpamAllowed = 1; +$Host::EvoPreMatchSpamAllowed = 1; +$Host::EvoRandomMissions = 0; +$Host::EvoRandomTeams = 1; +$Host::EvoRelaxedFairTeams = 1; +$Host::EvoServerRules1 = "1.) Be Courteous"; +$Host::EvoServerRules2 = "2.) Don\'t Llama Grab"; +$Host::EvoServerRules3 = "3.) Don\'t take yourself too seriously"; +$Host::EvoServerRules4 = "4.) Have Fun"; +$Host::EvoShowStats = 1; +$Host::EvoSkipMission = 0; +$Host::EvoSpamAllowed = 1; +$Host::EvoStats = 1; +$Host::EvoStatsPosition = 1; +$Host::EvoStatsTourney = 1; +$Host::EvoStatsType = 2; +$Host::EvoSuperAdminClanLock = 0; +$Host::EvoSuperAdminCRCCheck = 1; +$Host::EvoSuperAdminReset = 0; +$Host::EvoSuperAdminSuper = 1; +$Host::EvoSuperAdminWhois = 1; +$Host::EvoSuperClearServer = 1; +$Host::EvoSuperPassVote = 1; +$Host::EvoTCCannedMessages = 1; +$Host::EvoTCMessages = 1; +$Host::EvoTeamCannedSpam = 1; +$Host::EvoTeamMeMsg = 1; +$Host::EvoTeamSpam = 1; +$Host::EvoTimeLimitList = "90 120 150 180 240 360 480 999"; +$Host::EvoTKLogging = 0; +$Host::EvoTKMax = 12; +$Host::EvoTKVote = 5; +$Host::EvoTKWarn1 = 3; +$Host::EvoTKWarn2 = 6; +$Host::EvoTourneySameMap = 0; +$Host::EvoUseHighPerformanceCounter = 0; +$Host::FloodProtectionEnabled = 1; +$Host::GameName = "TacoStand Lak"; +$Host::HiVisibility = "0"; +$Host::holoName1 = "Storm"; +$Host::holoName2 = "Inferno"; +$Host::holoName3 = "Starwolf"; +$Host::holoName4 = "DSword"; +$Host::holoName5 = "BloodEagle"; +$Host::holoName6 = "Harbinger"; +$Host::Info = "This server runs a modified version of Classic"; +$Host::KickBanTime = 600; +$Host::LakRabbitNoSplashDamage = 1; +$Host::Map = "VaubanLak"; +$Host::MapCycleAcidRain_CTF = "0"; +$Host::MapCycleAgentsOfFortune_Duel = "0"; +$Host::MapCycleAgorazscium_CTF = "0"; +$Host::MapCycleAlcatraz_Siege = "1"; +$Host::MapCycleArchipelago_CTF = "0"; +$Host::MapCycleArenaDome_CTF = "1"; +$Host::MapCycleArenaDome_sctf = "1"; +$Host::MapCycleArrakis_LakRabbit = "0"; +$Host::MapCycleAstersDescent_CTF = "0"; +$Host::MapCycleAstersDescent_sctf = "1"; +$Host::MapCycleAzoth_CTF = "0"; +$Host::MapCycleAzoth_sctf = "0"; +$Host::MapCycleBasinFury_CTF = "0"; +$Host::MapCycleBattleGrove_CTF = "0"; +$Host::MapCycleBeggarsRun_CTF = "1"; +$Host::MapCycleBeggarsRun_sctf = "0"; +$Host::MapCycleBeggarsRunLak_LakRabbit = "0"; +$Host::MapCycleberlard_CTF = "1"; +$Host::MapCycleberlard_sctf = "1"; +$Host::MapCycleBlastside_nef_CTF = "0"; +$Host::MapCycleBoxLak_LakRabbit = "0"; +$Host::MapCycleBridgeTooFar_CTF = "0"; +$Host::MapCycleBroadside_nef_CTF = "0"; +$Host::MapCycleBulwark_CTF = "1"; +$Host::MapCycleBulwark_sctf = "1"; +$Host::MapCycleCadaver_CTF = "0"; +$Host::MapCycleCamelland_CTF = "0"; +$Host::MapCycleCamelland_sctf = "0"; +$Host::MapCycleCasern_Cavite_Duel = "0"; +$Host::MapCycleChoke_CTF = "0"; +$Host::MapCycleCircleofstones_CTF = "1"; +$Host::MapCycleCirclesEdge_CTF = "1"; +$Host::MapCycleCirclesEdge_sctf = "1"; +$Host::MapCycleCloseCombat_CTF = "1"; +$Host::MapCycleCloseCombat_sctf = "1"; +$Host::MapCycleCloudBurst_CTF = "0"; +$Host::MapCycleCloudCity_CTF = "0"; +$Host::MapCycleConfusco_CTF = "0"; +$Host::MapCycleConstructionYard_CTF = "0"; +$Host::MapCycleCoppersky_CTF = "0"; +$Host::MapCycleCrater71Lak_LakRabbit = "1"; +$Host::MapCycleDamnation_CTF = "0"; +$Host::MapCycleDamnation_sctf = "0"; +$Host::MapCycleDamnationLak_LakRabbit = "1"; +$Host::MapCycleDangerousCrossing_nef_CTF = "1"; +$Host::MapCycleDangerousCrossing_nef_sctf = "0"; +$Host::MapCycleDeathBirdsFly_CTF = "0"; +$Host::MapCycleDehSwamp_sctf = "0"; +$Host::MapCycleDesertofDeath_nef_CTF = "0"; +$Host::MapCycleDesertofDeath_nef_sctf = "0"; +$Host::MapCycleDesertofDeathLak_Duel = "1"; +$Host::MapCycleDesertofDeathLak_LakRabbit = "1"; +$Host::MapCycleDesiccator_CTF = "0"; +$Host::MapCycleDevilsElbow_CTF = "0"; +$Host::MapCycleDevilsElbow_sctf = "0"; +$Host::MapCycleDire_CTF = "1"; +$Host::MapCycleDire_sctf = "1"; +$Host::MapCycleDiscord_CTF = "1"; +$Host::MapCycleDiscord_sctf = "1"; +$Host::MapCycleDisjointed_CTF = "0"; +$Host::MapCycleDisjointed_sctf = "0"; +$Host::MapCycleDissention_CTF = "1"; +$Host::MapCycleDuelersDelight_sctf = "1"; +$Host::MapCycleDustLust_CTF = "0"; +$Host::MapCycleDustLust_sctf = "1"; +$Host::MapCycleDustToDust_CTF = "0"; +$Host::MapCycleDustToDust_sctf = "0"; +$Host::MapCycleEinfach_CTF = "0"; +$Host::MapCycleEivoItoxico_CTF = "0"; +$Host::MapCycleEquinox_Duel = "1"; +$Host::MapCycleEquinoxLak_LakRabbit = "0"; +$Host::MapCycleEscalade_Duel = "1"; +$Host::MapCycleEscaladeLak_LakRabbit = "0"; +$Host::MapCycleExtractor_CTF = "0"; +$Host::MapCycleExtractor_sctf = "0"; +$Host::MapCycleFallout_CTF = "0"; +$Host::MapCycleFallout_sctf = "1"; +$Host::MapCycleFenix_CTF = "1"; +$Host::MapCycleFilteredDust_CTF = "0"; +$Host::MapCycleFirestorm_CTF = "0"; +$Host::MapCycleFirestorm_sctf = "1"; +$Host::MapCycleFracas_Duel = "0"; +$Host::MapCycleFrozenFuryLak_LakRabbit = "0"; +$Host::MapCycleFullCircle_CTF = "0"; +$Host::MapCycleGlade_CTF = "0"; +$Host::MapCycleGodsRiftLak_LakRabbit = "0"; +$Host::MapCycleGorgon_CTF = "0"; +$Host::MapCycleGorgon_sctf = "1"; +$Host::MapCycleHavenLak_LakRabbit = "1"; +$Host::MapCycleHeadstone_CTF = "1"; +$Host::MapCycleHeadstone_sctf = "0"; +$Host::MapCycleHighOctane_CTF = "1"; +$Host::MapCycleHighOctane_sctf = "1"; +$Host::MapCycleHighTrepidation_CTF = "0"; +$Host::MapCycleHighWire_CTF = "0"; +$Host::MapCycleHillside_CTF = "0"; +$Host::MapCycleHillsideLak_LakRabbit = "1"; +$Host::MapCycleHillsOfSorrow_LakRabbit = "1"; +$Host::MapCycleHostileLoch_CTF = "1"; +$Host::MapCycleHostileLoch_sctf = "1"; +$Host::MapCyclehostility_CTF = "0"; +$Host::MapCycleIceFall_CTF = "1"; +$Host::MapCycleIceFall_sctf = "1"; +$Host::MapCycleIceGulch_CTF = "0"; +$Host::MapCycleIceRidge_nef_CTF = "0"; +$Host::MapCycleInfernus_CTF = "1"; +$Host::MapCycleInnerSanctum_CTF = "0"; +$Host::MapCycleInvictus_Duel = "0"; +$Host::MapCycleIsland_CTF = "0"; +$Host::MapCycleIsland_sctf = "1"; +$Host::MapCycleIsleOfMan_CTF = "0"; +$Host::MapCycleIsleofman_Siege = "1"; +$Host::MapCycleJadeValley_CTF = "0"; +$Host::MapCycleJadeValley_sctf = "1"; +$Host::MapCycleKatabatic_CTF = "0"; +$Host::MapCycleks_braistv_CTF = "0"; +$Host::MapCycleLakefront_CTF = "1"; +$Host::MapCycleLogans_Run_CTF = "1"; +$Host::MapCycleLushLak_LakRabbit = "1"; +$Host::MapCycleMac_FlagArena_CTF = "1"; +$Host::MapCycleMac_FlagArena_sctf = "1"; +$Host::MapCycleMagmatic_CTF = "1"; +$Host::MapCycleMagmaticLak_LakRabbit = "0"; +$Host::MapCyclemelee_CTF = "1"; +$Host::MapCyclemelee_sctf = "1"; +$Host::MapCycleMiniDesertofDeath_CTF = "1"; +$Host::MapCycleMiniDesertofDeath_nef_CTF = "1"; +$Host::MapCycleMiniDesertofDeath_nef_sctf = "1"; +$Host::MapCycleMiniDesertofDeath_sctf = "1"; +$Host::MapCycleMiniSunDried_LakRabbit = "1"; +$Host::MapCycleMinotaur_CTF = "1"; +$Host::MapCycleMinotaur_sctf = "0"; +$Host::MapCycleMirage_CTF = "1"; +$Host::MapCycleMirage_sctf = "1"; +$Host::MapCycleMoonDance_CTF = "1"; +$Host::MapCycleMountainMist_CTF = "0"; +$Host::MapCycleMyrkWood_Duel = "1"; +$Host::MapCycleNatureMagic_CTF = "1"; +$Host::MapCycleNightdance_CTF = "0"; +$Host::MapCycleOasis_Duel = "1"; +$Host::MapCycleoasisintensity_CTF = "1"; +$Host::MapCycleoasisintensity_sctf = "1"; +$Host::MapCycleOasisSLDM_ShocklanceDM = "1"; +$Host::MapCycleOctoberRust_CTF = "0"; +$Host::MapCyclePantheon_CTF = "0"; +$Host::MapCyclePariah_CTF = "1"; +$Host::MapCyclePariah_sctf = "1"; +$Host::MapCyclePeak_CTF = "0"; +$Host::MapCyclePeak_sctf = "0"; +$Host::MapCyclePendulum_CTF = "0"; +$Host::MapCyclePhasmaDustLak_LakRabbit = "1"; +$Host::MapCyclePicnicTable_CTF = "1"; +$Host::MapCyclePyroclasm_Duel = "1"; +$Host::MapCycleQuagmire_CTF = "0"; +$Host::MapCycleRaindance_nef_CTF = "1"; +$Host::MapCycleRaindance_nefLak_LakRabbit = "1"; +$Host::MapCycleRamparts_CTF = "0"; +$Host::MapCycleRasp_Duel = "1"; +$Host::MapCycleRaspSLDM_ShocklanceDM = "1"; +$Host::MapCycleRecalescence_CTF = "0"; +$Host::MapCycleReversion_CTF = "0"; +$Host::MapCycleRiverDance_CTF = "0"; +$Host::MapCycleRollercoaster_nef_CTF = "1"; +$Host::MapCycleRoundTheMountain_CTF = "1"; +$Host::MapCycleRoundTheMountain_sctf = "1"; +$Host::MapCycleS5_Centaur_CTF = "1"; +$Host::MapCycleS5_Centaur_sctf = "0"; +$Host::MapCycleS5_Damnation_CTF = "1"; +$Host::MapCycleS5_Damnation_sctf = "1"; +$Host::MapCycleS5_Drache_CTF = "0"; +$Host::MapCycleS5_Drache_sctf = "1"; +$Host::MapCycleS5_HawkingHeat_CTF = "0"; +$Host::MapCycleS5_HawkingHeat_sctf = "0"; +$Host::MapCycleS5_Icedance_CTF = "1"; +$Host::MapCycleS5_Icedance_sctf = "1"; +$Host::MapCycleS5_Massive_CTF = "1"; +$Host::MapCycleS5_Massive_sctf = "1"; +$Host::MapCycleS5_Mimicry_CTF = "1"; +$Host::MapCycleS5_Mimicry_sctf = "1"; +$Host::MapCycleS5_Misadventure_CTF = "0"; +$Host::MapCycleS5_Misadventure_sctf = "0"; +$Host::MapCycleS5_Mordacity_CTF = "1"; +$Host::MapCycleS5_Mordacity_sctf = "1"; +$Host::MapCycleS5_Reynard_CTF = "0"; +$Host::MapCycleS5_Reynard_sctf = "0"; +$Host::MapCycleS5_Sherman_CTF = "0"; +$Host::MapCycleS5_Sherman_sctf = "0"; +$Host::MapCycleS5_Silenus_CTF = "0"; +$Host::MapCycleS5_Silenus_sctf = "1"; +$Host::MapCycleS5_Woodymyrk_CTF = "0"; +$Host::MapCycleS5_Woodymyrk_sctf = "1"; +$Host::MapCycleS8_Cardiac_CTF = "1"; +$Host::MapCycleS8_Cardiac_sctf = "1"; +$Host::MapCycleS8_CentralDogma_CTF = "0"; +$Host::MapCycleS8_Geothermal_CTF = "0"; +$Host::MapCycleS8_Geothermal_sctf = "0"; +$Host::MapCycleS8_GeothermalLak_LakRabbit = "1"; +$Host::MapCycleS8_Mountking_CTF = "0"; +$Host::MapCycleS8_Opus_CTF = "1"; +$Host::MapCycleS8_Opus_sctf = "1"; +$Host::MapCycleS8_Zilch_CTF = "0"; +$Host::MapCycleS8_Zilch_sctf = "1"; +$Host::MapCycleSaddiesHill_LakRabbit = "1"; +$Host::MapCycleSanctuary_CTF = "0"; +$Host::MapCycleSandOcean_CTF = "0"; +$Host::MapCycleSandstorm_CTF = "0"; +$Host::MapCycleSandStormLak_LakRabbit = "0"; +$Host::MapCycleScarabrae_nef_CTF = "0"; +$Host::MapCycleShockRidge_CTF = "0"; +$Host::MapCycleShortFall_CTF = "1"; +$Host::MapCycleShortFall_sctf = "1"; +$Host::MapCycleSignal_CTF = "1"; +$Host::MapCycleSignal_sctf = "1"; +$Host::MapCycleSkinnyDipLak_LakRabbit = "1"; +$Host::MapCycleSlapdash_CTF = "0"; +$Host::MapCycleSmallCrossing_CTF = "1"; +$Host::MapCycleSmallCrossing_sctf = "1"; +$Host::MapCycleSmallDesertofDeath_CTF = "0"; +$Host::MapCycleSmallDesertofDeath_sctf = "1"; +$Host::MapCycleSmallMelee_CTF = "1"; +$Host::MapCycleSmallMelee_sctf = "1"; +$Host::MapCycleSmallTimeCTF_CTF = "1"; +$Host::MapCycleSmallTimeCTF_sctf = "1"; +$Host::MapCycleSnowcone_CTF = "0"; +$Host::MapCycleSnowcone_sctf = "1"; +$Host::MapCycleSolsDescentLak_LakRabbit = "1"; +$Host::MapCycleSoylentGreen_CTF = "1"; +$Host::MapCycleSoylentGreen_sctf = "1"; +$Host::MapCycleStarfallen_CTF = "0"; +$Host::MapCycleStarIce_CTF = "0"; +$Host::MapCycleStonehenge_nef_CTF = "0"; +$Host::MapCycleSundance_LakRabbit = "1"; +$Host::MapCycleSunDried_Duel = "1"; +$Host::MapCycleSunDriedLak_LakRabbit = "1"; +$Host::MapCycleSunDriedSLDM_ShocklanceDM = "1"; +$Host::MapCycleSuperHappyBouncyFunTime_CTF = "1"; +$Host::MapCycleSuperHappyBouncyFunTime_sctf = "0"; +$Host::MapCycleSurreal_CTF = "0"; +$Host::MapCycleSurro_CTF = "0"; +$Host::MapCycleTalus_Duel = "0"; +$Host::MapCycleTenebrousCTF_CTF = "1"; +$Host::MapCycleTheClocktower_CTF = "0"; +$Host::MapCycleTheFray_CTF = "1"; +$Host::MapCycleTheFray_sctf = "1"; +$Host::MapCycleThinIce_CTF = "0"; +$Host::MapCycleTibbaw_LakRabbit = "0"; +$Host::MapCycleTitan_CTF = "0"; +$Host::MapCycleTitan_sctf = "0"; +$Host::MapCycleTitanLak_LakRabbit = "0"; +$Host::MapCycleTitForTat_CTF = "1"; +$Host::MapCycleTitForTat_sctf = "1"; +$Host::MapCycleTombstone_CTF = "0"; +$Host::MapCycleTombstone_Duel = "1"; +$Host::MapCycleTreasureIslandLak_LakRabbit = "1"; +$Host::MapCycleTrident_CTF = "0"; +$Host::MapCycleTrident_Siege = "1"; +$Host::MapCycleTWL2_Bleed_CTF = "0"; +$Host::MapCycleTWL2_BlueMoon_CTF = "0"; +$Host::MapCycleTWL2_CanyonCrusadeDeluxe_CTF = "1"; +$Host::MapCycleTWL2_CanyonCrusadeDeluxe_sctf = "1"; +$Host::MapCycleTWL2_Celerity_CTF = "1"; +$Host::MapCycleTWL2_Celerity_sctf = "0"; +$Host::MapCycleTWL2_CloakOfNight_CTF = "0"; +$Host::MapCycleTWL2_Crevice_CTF = "0"; +$Host::MapCycleTWL2_Crevice_sctf = "0"; +$Host::MapCycleTWL2_Dissention_CTF = "0"; +$Host::MapCycleTWL2_Drifts_CTF = "0"; +$Host::MapCycleTWL2_Drifts_sctf = "0"; +$Host::MapCycleTWL2_Drorck_CTF = "0"; +$Host::MapCycleTWL2_Drorck_sctf = "1"; +$Host::MapCycleTWL2_FrozenGlory_CTF = "0"; +$Host::MapCycleTWL2_FrozenGlory_sctf = "1"; +$Host::MapCycleTWL2_FrozenHope_CTF = "1"; +$Host::MapCycleTWL2_FrozenHope_sctf = "0"; +$Host::MapCycleTWL2_Hildebrand_CTF = "1"; +$Host::MapCycleTWL2_Hildebrand_sctf = "1"; +$Host::MapCycleTWL2_IceDagger_CTF = "0"; +$Host::MapCycleTWL2_IceDagger_sctf = "0"; +$Host::MapCycleTWL2_JaggedClaw_CTF = "1"; +$Host::MapCycleTWL2_JaggedClaw_sctf = "1"; +$Host::MapCycleTWL2_Magnum_CTF = "1"; +$Host::MapCycleTWL2_MidnightMayhemDeluxe_CTF = "0"; +$Host::MapCycleTWL2_MidnightMayhemDeluxe_sctf = "1"; +$Host::MapCycleTWL2_MuddySwamp_CTF = "0"; +$Host::MapCycleTWL2_MuddySwamp_sctf = "0"; +$Host::MapCycleTWL2_MuddySwampLak_LakRabbit = "0"; +$Host::MapCycleTWL2_Norty_CTF = "0"; +$Host::MapCycleTWL2_Norty_sctf = "1"; +$Host::MapCycleTWL2_Ocular_CTF = "1"; +$Host::MapCycleTWL2_Ocular_sctf = "1"; +$Host::MapCycleTWL2_RoughLand_CTF = "0"; +$Host::MapCycleTWL2_RoughLand_sctf = "0"; +$Host::MapCycleTWL2_Ruined_CTF = "0"; +$Host::MapCycleTWL2_Ruined_sctf = "0"; +$Host::MapCycleTWL2_Skylight_CTF = "1"; +$Host::MapCycleTWL2_Skylight_sctf = "1"; +$Host::MapCycleTWL_BaNsHee_CTF = "0"; +$Host::MapCycleTWL_BaNsHee_sctf = "0"; +$Host::MapCycleTWL_BeachBlitz_CTF = "0"; +$Host::MapCycleTWL_BeachBlitz_sctf = "1"; +$Host::MapCycleTWL_BeachBlitzLak_LakRabbit = "1"; +$Host::MapCycleTWL_Boss_CTF = "0"; +$Host::MapCycleTWL_Boss_sctf = "0"; +$Host::MapCycleTWL_Chokepoint_CTF = "0"; +$Host::MapCycleTWL_Cinereous_CTF = "1"; +$Host::MapCycleTWL_Cinereous_sctf = "1"; +$Host::MapCycleTWL_Clusterfuct_CTF = "0"; +$Host::MapCycleTWL_Clusterfuct_sctf = "1"; +$Host::MapCycleTWL_Crossfire_CTF = "1"; +$Host::MapCycleTWL_Crossfire_sctf = "1"; +$Host::MapCycleTWL_Curtilage_CTF = "0"; +$Host::MapCycleTWL_Curtilage_sctf = "1"; +$Host::MapCycleTWL_Damnation_CTF = "1"; +$Host::MapCycleTWL_Damnation_sctf = "0"; +$Host::MapCycleTWL_DangerousCrossing_CTF = "1"; +$Host::MapCycleTWL_DangerousCrossing_sctf = "1"; +$Host::MapCycleTWL_DeadlyBirdsSong_CTF = "0"; +$Host::MapCycleTWL_DeadlyBirdsSong_sctf = "0"; +$Host::MapCycleTWL_Deserted_CTF = "0"; +$Host::MapCycleTWL_Deserted_sctf = "1"; +$Host::MapCycleTWL_Feign_CTF = "1"; +$Host::MapCycleTWL_Feign_sctf = "1"; +$Host::MapCycleTWL_Frostclaw_CTF = "0"; +$Host::MapCycleTWL_Frostclaw_sctf = "0"; +$Host::MapCycleTWL_Frozen_CTF = "0"; +$Host::MapCycleTWL_Harvester_CTF = "0"; +$Host::MapCycleTWL_Horde_CTF = "0"; +$Host::MapCycleTWL_Katabatic_CTF = "0"; +$Host::MapCycleTWL_Neve_CTF = "0"; +$Host::MapCycleTWL_Neve_sctf = "0"; +$Host::MapCycleTWL_NoShelter_CTF = "0"; +$Host::MapCycleTWL_NoShelter_sctf = "0"; +$Host::MapCycleTWL_OsIris_CTF = "1"; +$Host::MapCycleTWL_OsIris_sctf = "1"; +$Host::MapCycleTWL_Pandemonium_CTF = "0"; +$Host::MapCycleTWL_Pandemonium_sctf = "1"; +$Host::MapCycleTWL_Ramparts_CTF = "0"; +$Host::MapCycleTWL_Ramparts_sctf = "0"; +$Host::MapCycleTWL_Rollercoaster_sctf = "1"; +$Host::MapCycleTWL_Sandstorm_CTF = "0"; +$Host::MapCycleTWL_Snowblind_CTF = "0"; +$Host::MapCycleTWL_Starfallen_CTF = "0"; +$Host::MapCycleTWL_Stonehenge_CTF = "1"; +$Host::MapCycleTWL_Stonehenge_sctf = "1"; +$Host::MapCycleTWL_SubZero_CTF = "0"; +$Host::MapCycleTWL_Titan_CTF = "0"; +$Host::MapCycleTWL_Titan_sctf = "0"; +$Host::MapCycleTWL_WilderZone_CTF = "1"; +$Host::MapCycleTWL_WilderZone_sctf = "1"; +$Host::MapCycleTWL_WoodyMyrk_CTF = "0"; +$Host::MapCycleUnderhill_Duel = "0"; +$Host::MapCycleVauban_CTF = "0"; +$Host::MapCycleVaubanLak_Duel = "1"; +$Host::MapCycleVaubanLak_LakRabbit = "1"; +$Host::MapCycleWhiteout_Duel = "1"; +$Host::MapCycleWindyGap_CTF = "0"; +$Host::MapFFAAcidRain_CTF = "1"; +$Host::MapFFAAgentsOfFortune_Duel = "0"; +$Host::MapFFAAgorazscium_CTF = "1"; +$Host::MapFFAAlcatraz_Siege = "1"; +$Host::MapFFAArchipelago_CTF = "0"; +$Host::MapFFAArenaDome_CTF = "1"; +$Host::MapFFAArenaDome_sctf = "1"; +$Host::MapFFAArrakis_LakRabbit = "1"; +$Host::MapFFAAstersDescent_CTF = "1"; +$Host::MapFFAAstersDescent_sctf = "1"; +$Host::MapFFAAzoth_CTF = "1"; +$Host::MapFFAAzoth_sctf = "1"; +$Host::MapFFABasinFury_CTF = "1"; +$Host::MapFFABattleGrove_CTF = "1"; +$Host::MapFFABeggarsRun_CTF = "1"; +$Host::MapFFABeggarsRun_sctf = "1"; +$Host::MapFFABeggarsRunLak_LakRabbit = "1"; +$Host::MapFFAberlard_CTF = "1"; +$Host::MapFFAberlard_sctf = "1"; +$Host::MapFFABlastside_nef_CTF = "1"; +$Host::MapFFABoxLak_LakRabbit = "1"; +$Host::MapFFABridgeTooFar_CTF = "1"; +$Host::MapFFABroadside_nef_CTF = "0"; +$Host::MapFFABulwark_CTF = "1"; +$Host::MapFFABulwark_sctf = "1"; +$Host::MapFFACadaver_CTF = "1"; +$Host::MapFFACamelland_CTF = "1"; +$Host::MapFFACamelland_sctf = "1"; +$Host::MapFFACasern_Cavite_Duel = "0"; +$Host::MapFFAChoke_CTF = "1"; +$Host::MapFFACircleofstones_CTF = "1"; +$Host::MapFFACirclesEdge_CTF = "1"; +$Host::MapFFACirclesEdge_sctf = "1"; +$Host::MapFFACloseCombat_CTF = "1"; +$Host::MapFFACloseCombat_sctf = "1"; +$Host::MapFFACloudBurst_CTF = "1"; +$Host::MapFFACloudCity_CTF = "1"; +$Host::MapFFAConfusco_CTF = "1"; +$Host::MapFFAConstructionYard_CTF = "1"; +$Host::MapFFACoppersky_CTF = "1"; +$Host::MapFFACrater71Lak_LakRabbit = "1"; +$Host::MapFFADamnation_CTF = "0"; +$Host::MapFFADamnation_sctf = "0"; +$Host::MapFFADamnationLak_LakRabbit = "1"; +$Host::MapFFADangerousCrossing_nef_CTF = "1"; +$Host::MapFFADangerousCrossing_nef_sctf = "1"; +$Host::MapFFADeathBirdsFly_CTF = "0"; +$Host::MapFFADehSwamp_sctf = "1"; +$Host::MapFFADesertofDeath_nef_CTF = "0"; +$Host::MapFFADesertofDeath_nef_sctf = "0"; +$Host::MapFFADesertofDeathLak_Duel = "1"; +$Host::MapFFADesertofDeathLak_LakRabbit = "1"; +$Host::MapFFADesiccator_CTF = "0"; +$Host::MapFFADevilsElbow_CTF = "1"; +$Host::MapFFADevilsElbow_sctf = "1"; +$Host::MapFFADire_CTF = "1"; +$Host::MapFFADire_sctf = "1"; +$Host::MapFFADiscord_CTF = "1"; +$Host::MapFFADiscord_sctf = "1"; +$Host::MapFFADisjointed_CTF = "1"; +$Host::MapFFADisjointed_sctf = "1"; +$Host::MapFFADissention_CTF = "1"; +$Host::MapFFADuelersDelight_sctf = "1"; +$Host::MapFFADustLust_CTF = "1"; +$Host::MapFFADustLust_sctf = "1"; +$Host::MapFFADustToDust_CTF = "0"; +$Host::MapFFADustToDust_sctf = "1"; +$Host::MapFFAEinfach_CTF = "0"; +$Host::MapFFAEivoItoxico_CTF = "1"; +$Host::MapFFAEquinox_Duel = "1"; +$Host::MapFFAEquinoxLak_LakRabbit = "1"; +$Host::MapFFAEscalade_Duel = "1"; +$Host::MapFFAEscaladeLak_LakRabbit = "1"; +$Host::MapFFAExtractor_CTF = "1"; +$Host::MapFFAExtractor_sctf = "1"; +$Host::MapFFAFallout_CTF = "1"; +$Host::MapFFAFallout_sctf = "1"; +$Host::MapFFAFenix_CTF = "1"; +$Host::MapFFAFilteredDust_CTF = "1"; +$Host::MapFFAFirestorm_CTF = "1"; +$Host::MapFFAFirestorm_sctf = "1"; +$Host::MapFFAFracas_Duel = "0"; +$Host::MapFFAFrozenFuryLak_LakRabbit = "1"; +$Host::MapFFAFullCircle_CTF = "1"; +$Host::MapFFAGlade_CTF = "1"; +$Host::MapFFAGodsRiftLak_LakRabbit = "1"; +$Host::MapFFAGorgon_CTF = "1"; +$Host::MapFFAGorgon_sctf = "1"; +$Host::MapFFAHavenLak_LakRabbit = "1"; +$Host::MapFFAHeadstone_CTF = "1"; +$Host::MapFFAHeadstone_sctf = "1"; +$Host::MapFFAHighOctane_CTF = "1"; +$Host::MapFFAHighOctane_sctf = "1"; +$Host::MapFFAHighTrepidation_CTF = "1"; +$Host::MapFFAHighWire_CTF = "1"; +$Host::MapFFAHillside_CTF = "1"; +$Host::MapFFAHillsideLak_LakRabbit = "1"; +$Host::MapFFAHillsOfSorrow_LakRabbit = "1"; +$Host::MapFFAHostileLoch_CTF = "1"; +$Host::MapFFAHostileLoch_sctf = "1"; +$Host::MapFFAhostility_CTF = "1"; +$Host::MapFFAIceFall_CTF = "1"; +$Host::MapFFAIceFall_sctf = "1"; +$Host::MapFFAIceGulch_CTF = "1"; +$Host::MapFFAIceRidge_nef_CTF = "1"; +$Host::MapFFAInfernus_CTF = "1"; +$Host::MapFFAInnerSanctum_CTF = "1"; +$Host::MapFFAInvictus_Duel = "0"; +$Host::MapFFAIsland_CTF = "1"; +$Host::MapFFAIsland_sctf = "1"; +$Host::MapFFAIsleOfMan_CTF = "1"; +$Host::MapFFAIsleofman_Siege = "1"; +$Host::MapFFAJadeValley_CTF = "1"; +$Host::MapFFAJadeValley_sctf = "1"; +$Host::MapFFAKatabatic_CTF = "1"; +$Host::MapFFAks_braistv_CTF = "1"; +$Host::MapFFALakefront_CTF = "1"; +$Host::MapFFALogans_Run_CTF = "1"; +$Host::MapFFALushLak_LakRabbit = "1"; +$Host::MapFFAMac_FlagArena_CTF = "1"; +$Host::MapFFAMac_FlagArena_sctf = "1"; +$Host::MapFFAMagmatic_CTF = "1"; +$Host::MapFFAMagmaticLak_LakRabbit = "1"; +$Host::MapFFAmelee_CTF = "1"; +$Host::MapFFAmelee_sctf = "1"; +$Host::MapFFAMiniDesertofDeath_CTF = "1"; +$Host::MapFFAMiniDesertofDeath_nef_CTF = "1"; +$Host::MapFFAMiniDesertofDeath_nef_sctf = "1"; +$Host::MapFFAMiniDesertofDeath_sctf = "1"; +$Host::MapFFAMiniSunDried_LakRabbit = "1"; +$Host::MapFFAMinotaur_CTF = "1"; +$Host::MapFFAMinotaur_sctf = "0"; +$Host::MapFFAMirage_CTF = "1"; +$Host::MapFFAMirage_sctf = "1"; +$Host::MapFFAMoonDance_CTF = "1"; +$Host::MapFFAMountainMist_CTF = "1"; +$Host::MapFFAMyrkWood_Duel = "1"; +$Host::MapFFANatureMagic_CTF = "1"; +$Host::MapFFANightdance_CTF = "1"; +$Host::MapFFAOasis_Duel = "1"; +$Host::MapFFAoasisintensity_CTF = "1"; +$Host::MapFFAoasisintensity_sctf = "1"; +$Host::MapFFAOasisSLDM_ShocklanceDM = "1"; +$Host::MapFFAOctoberRust_CTF = "1"; +$Host::MapFFAPantheon_CTF = "1"; +$Host::MapFFAPariah_CTF = "1"; +$Host::MapFFAPariah_sctf = "1"; +$Host::MapFFAPeak_CTF = "1"; +$Host::MapFFAPeak_sctf = "1"; +$Host::MapFFAPendulum_CTF = "1"; +$Host::MapFFAPhasmaDustLak_LakRabbit = "1"; +$Host::MapFFAPicnicTable_CTF = "1"; +$Host::MapFFAPyroclasm_Duel = "1"; +$Host::MapFFAQuagmire_CTF = "0"; +$Host::MapFFARaindance_nef_CTF = "1"; +$Host::MapFFARaindance_nefLak_LakRabbit = "1"; +$Host::MapFFARamparts_CTF = "1"; +$Host::MapFFARasp_Duel = "1"; +$Host::MapFFARaspSLDM_ShocklanceDM = "1"; +$Host::MapFFARecalescence_CTF = "0"; +$Host::MapFFAReversion_CTF = "0"; +$Host::MapFFARiverDance_CTF = "1"; +$Host::MapFFARollercoaster_nef_CTF = "1"; +$Host::MapFFARoundTheMountain_CTF = "1"; +$Host::MapFFARoundTheMountain_sctf = "1"; +$Host::MapFFAS5_Centaur_CTF = "1"; +$Host::MapFFAS5_Centaur_sctf = "1"; +$Host::MapFFAS5_Damnation_CTF = "1"; +$Host::MapFFAS5_Damnation_sctf = "1"; +$Host::MapFFAS5_Drache_CTF = "1"; +$Host::MapFFAS5_Drache_sctf = "1"; +$Host::MapFFAS5_HawkingHeat_CTF = "1"; +$Host::MapFFAS5_HawkingHeat_sctf = "1"; +$Host::MapFFAS5_Icedance_CTF = "1"; +$Host::MapFFAS5_Icedance_sctf = "1"; +$Host::MapFFAS5_Massive_CTF = "1"; +$Host::MapFFAS5_Massive_sctf = "1"; +$Host::MapFFAS5_Mimicry_CTF = "1"; +$Host::MapFFAS5_Mimicry_sctf = "1"; +$Host::MapFFAS5_Misadventure_CTF = "1"; +$Host::MapFFAS5_Misadventure_sctf = "1"; +$Host::MapFFAS5_Mordacity_CTF = "1"; +$Host::MapFFAS5_Mordacity_sctf = "1"; +$Host::MapFFAS5_Reynard_CTF = "1"; +$Host::MapFFAS5_Reynard_sctf = "1"; +$Host::MapFFAS5_Sherman_CTF = "1"; +$Host::MapFFAS5_Sherman_sctf = "1"; +$Host::MapFFAS5_Silenus_CTF = "1"; +$Host::MapFFAS5_Silenus_sctf = "1"; +$Host::MapFFAS5_Woodymyrk_CTF = "1"; +$Host::MapFFAS5_Woodymyrk_sctf = "1"; +$Host::MapFFAS8_Cardiac_CTF = "1"; +$Host::MapFFAS8_Cardiac_sctf = "1"; +$Host::MapFFAS8_CentralDogma_CTF = "1"; +$Host::MapFFAS8_Geothermal_CTF = "1"; +$Host::MapFFAS8_Geothermal_sctf = "0"; +$Host::MapFFAS8_GeothermalLak_LakRabbit = "1"; +$Host::MapFFAS8_Mountking_CTF = "1"; +$Host::MapFFAS8_Opus_CTF = "1"; +$Host::MapFFAS8_Opus_sctf = "1"; +$Host::MapFFAS8_Zilch_CTF = "1"; +$Host::MapFFAS8_Zilch_sctf = "1"; +$Host::MapFFASaddiesHill_LakRabbit = "1"; +$Host::MapFFASanctuary_CTF = "0"; +$Host::MapFFASandOcean_CTF = "1"; +$Host::MapFFASandstorm_CTF = "1"; +$Host::MapFFASandStormLak_LakRabbit = "1"; +$Host::MapFFAScarabrae_nef_CTF = "0"; +$Host::MapFFAShockRidge_CTF = "1"; +$Host::MapFFAShortFall_CTF = "1"; +$Host::MapFFAShortFall_sctf = "1"; +$Host::MapFFASignal_CTF = "1"; +$Host::MapFFASignal_sctf = "1"; +$Host::MapFFASkinnyDipLak_LakRabbit = "1"; +$Host::MapFFASlapdash_CTF = "0"; +$Host::MapFFASmallCrossing_CTF = "1"; +$Host::MapFFASmallCrossing_sctf = "1"; +$Host::MapFFASmallDesertofDeath_CTF = "1"; +$Host::MapFFASmallDesertofDeath_sctf = "1"; +$Host::MapFFASmallMelee_CTF = "1"; +$Host::MapFFASmallMelee_sctf = "1"; +$Host::MapFFASmallTimeCTF_CTF = "1"; +$Host::MapFFASmallTimeCTF_sctf = "1"; +$Host::MapFFASnowcone_CTF = "1"; +$Host::MapFFASnowcone_sctf = "1"; +$Host::MapFFASolsDescentLak_LakRabbit = "1"; +$Host::MapFFASoylentGreen_CTF = "1"; +$Host::MapFFASoylentGreen_sctf = "1"; +$Host::MapFFAStarfallen_CTF = "1"; +$Host::MapFFAStarIce_CTF = "1"; +$Host::MapFFAStonehenge_nef_CTF = "1"; +$Host::MapFFASundance_LakRabbit = "1"; +$Host::MapFFASunDried_Duel = "1"; +$Host::MapFFASunDriedLak_LakRabbit = "1"; +$Host::MapFFASunDriedSLDM_ShocklanceDM = "1"; +$Host::MapFFASuperHappyBouncyFunTime_CTF = "1"; +$Host::MapFFASuperHappyBouncyFunTime_sctf = "1"; +$Host::MapFFASurreal_CTF = "1"; +$Host::MapFFASurro_CTF = "1"; +$Host::MapFFATalus_Duel = "0"; +$Host::MapFFATenebrousCTF_CTF = "1"; +$Host::MapFFATheClocktower_CTF = "1"; +$Host::MapFFATheFray_CTF = "1"; +$Host::MapFFATheFray_sctf = "1"; +$Host::MapFFAThinIce_CTF = "0"; +$Host::MapFFATibbaw_LakRabbit = "1"; +$Host::MapFFATitan_CTF = "0"; +$Host::MapFFATitan_sctf = "1"; +$Host::MapFFATitanLak_LakRabbit = "1"; +$Host::MapFFATitForTat_CTF = "1"; +$Host::MapFFATitForTat_sctf = "1"; +$Host::MapFFATombstone_CTF = "0"; +$Host::MapFFATombstone_Duel = "1"; +$Host::MapFFATreasureIslandLak_LakRabbit = "1"; +$Host::MapFFATrident_CTF = "1"; +$Host::MapFFATrident_Siege = "1"; +$Host::MapFFATWL2_Bleed_CTF = "1"; +$Host::MapFFATWL2_BlueMoon_CTF = "1"; +$Host::MapFFATWL2_CanyonCrusadeDeluxe_CTF = "1"; +$Host::MapFFATWL2_CanyonCrusadeDeluxe_sctf = "1"; +$Host::MapFFATWL2_Celerity_CTF = "1"; +$Host::MapFFATWL2_Celerity_sctf = "1"; +$Host::MapFFATWL2_CloakOfNight_CTF = "1"; +$Host::MapFFATWL2_Crevice_CTF = "1"; +$Host::MapFFATWL2_Crevice_sctf = "1"; +$Host::MapFFATWL2_Dissention_CTF = "1"; +$Host::MapFFATWL2_Drifts_CTF = "1"; +$Host::MapFFATWL2_Drifts_sctf = "1"; +$Host::MapFFATWL2_Drorck_CTF = "1"; +$Host::MapFFATWL2_Drorck_sctf = "1"; +$Host::MapFFATWL2_FrozenGlory_CTF = "1"; +$Host::MapFFATWL2_FrozenGlory_sctf = "1"; +$Host::MapFFATWL2_FrozenHope_CTF = "1"; +$Host::MapFFATWL2_FrozenHope_sctf = "1"; +$Host::MapFFATWL2_Hildebrand_CTF = "1"; +$Host::MapFFATWL2_Hildebrand_sctf = "1"; +$Host::MapFFATWL2_IceDagger_CTF = "1"; +$Host::MapFFATWL2_IceDagger_sctf = "1"; +$Host::MapFFATWL2_JaggedClaw_CTF = "1"; +$Host::MapFFATWL2_JaggedClaw_sctf = "1"; +$Host::MapFFATWL2_Magnum_CTF = "1"; +$Host::MapFFATWL2_MidnightMayhemDeluxe_CTF = "1"; +$Host::MapFFATWL2_MidnightMayhemDeluxe_sctf = "1"; +$Host::MapFFATWL2_MuddySwamp_CTF = "1"; +$Host::MapFFATWL2_MuddySwamp_sctf = "0"; +$Host::MapFFATWL2_MuddySwampLak_LakRabbit = "0"; +$Host::MapFFATWL2_Norty_CTF = "1"; +$Host::MapFFATWL2_Norty_sctf = "1"; +$Host::MapFFATWL2_Ocular_CTF = "1"; +$Host::MapFFATWL2_Ocular_sctf = "1"; +$Host::MapFFATWL2_RoughLand_CTF = "1"; +$Host::MapFFATWL2_RoughLand_sctf = "0"; +$Host::MapFFATWL2_Ruined_CTF = "1"; +$Host::MapFFATWL2_Ruined_sctf = "0"; +$Host::MapFFATWL2_Skylight_CTF = "1"; +$Host::MapFFATWL2_Skylight_sctf = "1"; +$Host::MapFFATWL_BaNsHee_CTF = "1"; +$Host::MapFFATWL_BaNsHee_sctf = "1"; +$Host::MapFFATWL_BeachBlitz_CTF = "1"; +$Host::MapFFATWL_BeachBlitz_sctf = "1"; +$Host::MapFFATWL_BeachBlitzLak_LakRabbit = "1"; +$Host::MapFFATWL_Boss_CTF = "1"; +$Host::MapFFATWL_Boss_sctf = "1"; +$Host::MapFFATWL_Chokepoint_CTF = "1"; +$Host::MapFFATWL_Cinereous_CTF = "1"; +$Host::MapFFATWL_Cinereous_sctf = "1"; +$Host::MapFFATWL_Clusterfuct_CTF = "1"; +$Host::MapFFATWL_Clusterfuct_sctf = "1"; +$Host::MapFFATWL_Crossfire_CTF = "1"; +$Host::MapFFATWL_Crossfire_sctf = "1"; +$Host::MapFFATWL_Curtilage_CTF = "1"; +$Host::MapFFATWL_Curtilage_sctf = "1"; +$Host::MapFFATWL_Damnation_CTF = "1"; +$Host::MapFFATWL_Damnation_sctf = "0"; +$Host::MapFFATWL_DangerousCrossing_CTF = "1"; +$Host::MapFFATWL_DangerousCrossing_sctf = "1"; +$Host::MapFFATWL_DeadlyBirdsSong_CTF = "1"; +$Host::MapFFATWL_DeadlyBirdsSong_sctf = "1"; +$Host::MapFFATWL_Deserted_CTF = "1"; +$Host::MapFFATWL_Deserted_sctf = "1"; +$Host::MapFFATWL_Feign_CTF = "1"; +$Host::MapFFATWL_Feign_sctf = "1"; +$Host::MapFFATWL_Frostclaw_CTF = "1"; +$Host::MapFFATWL_Frostclaw_sctf = "0"; +$Host::MapFFATWL_Frozen_CTF = "1"; +$Host::MapFFATWL_Harvester_CTF = "1"; +$Host::MapFFATWL_Horde_CTF = "1"; +$Host::MapFFATWL_Katabatic_CTF = "1"; +$Host::MapFFATWL_Neve_CTF = "0"; +$Host::MapFFATWL_Neve_sctf = "0"; +$Host::MapFFATWL_NoShelter_CTF = "1"; +$Host::MapFFATWL_NoShelter_sctf = "1"; +$Host::MapFFATWL_OsIris_CTF = "1"; +$Host::MapFFATWL_OsIris_sctf = "1"; +$Host::MapFFATWL_Pandemonium_CTF = "1"; +$Host::MapFFATWL_Pandemonium_sctf = "1"; +$Host::MapFFATWL_Ramparts_CTF = "1"; +$Host::MapFFATWL_Ramparts_sctf = "1"; +$Host::MapFFATWL_Rollercoaster_sctf = "1"; +$Host::MapFFATWL_Sandstorm_CTF = "1"; +$Host::MapFFATWL_Snowblind_CTF = "1"; +$Host::MapFFATWL_Starfallen_CTF = "1"; +$Host::MapFFATWL_Stonehenge_CTF = "1"; +$Host::MapFFATWL_Stonehenge_sctf = "1"; +$Host::MapFFATWL_SubZero_CTF = "1"; +$Host::MapFFATWL_Titan_CTF = "1"; +$Host::MapFFATWL_Titan_sctf = "1"; +$Host::MapFFATWL_WilderZone_CTF = "1"; +$Host::MapFFATWL_WilderZone_sctf = "1"; +$Host::MapFFATWL_WoodyMyrk_CTF = "0"; +$Host::MapFFAUnderhill_Duel = "0"; +$Host::MapFFAVauban_CTF = "1"; +$Host::MapFFAVaubanLak_Duel = "1"; +$Host::MapFFAVaubanLak_LakRabbit = "1"; +$Host::MapFFAWhiteout_Duel = "1"; +$Host::MapFFAWindyGap_CTF = "1"; +$Host::MapPlayerLimitsAbominable_CnH = "-1 -1"; +$Host::MapPlayerLimitsAcidRain_CTF = "10 32"; +$Host::MapPlayerLimitsAgentsOfFortune_Duel = "-1 64"; +$Host::MapPlayerLimitsAgentsOfFortune_TeamHunters = "-1 32"; +$Host::MapPlayerLimitsAgorazscium_CTF = "10 64"; +$Host::MapPlayerLimitsAlcatraz_Siege = "-1 64"; +$Host::MapPlayerLimitsArchipelago_CTF = "16 64"; +$Host::MapPlayerLimitsArenaDome_CTF = "-1 32"; +$Host::MapPlayerLimitsArenaDome_sctf = "-1 32"; +$Host::MapPlayerLimitsArrakis_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsAshesToAshes_CnH = "16 -1"; +$Host::MapPlayerLimitsAstersDescent_CTF = "-1 32"; +$Host::MapPlayerLimitsAstersDescent_sctf = "-1 32"; +$Host::MapPlayerLimitsAzoth_CTF = "-1 32"; +$Host::MapPlayerLimitsAzoth_sctf = "-1 32"; +$Host::MapPlayerLimitsBasinFury_CTF = "10 32"; +$Host::MapPlayerLimitsBattleGrove_CTF = "-1 32"; +$Host::MapPlayerLimitsBeggarsRun_CTF = "-1 32"; +$Host::MapPlayerLimitsBeggarsRun_sctf = "-1 32"; +$Host::MapPlayerLimitsBeggarsRunLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsberlard_CTF = "6 32"; +$Host::MapPlayerLimitsberlard_sctf = "6 32"; +$Host::MapPlayerLimitsBlastside_nef_CTF = "6 32"; +$Host::MapPlayerLimitsBoxLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsBridgeTooFar_CTF = "-1 32"; +$Host::MapPlayerLimitsBroadside_nef_CTF = "-1 32"; +$Host::MapPlayerLimitsBulwark_CTF = "-1 16"; +$Host::MapPlayerLimitsBulwark_sctf = "-1 16"; +$Host::MapPlayerLimitsCadaver_CTF = "10 32"; +$Host::MapPlayerLimitsCaldera_Siege = "-1 48"; +$Host::MapPlayerLimitsCamelland_CTF = "-1 32"; +$Host::MapPlayerLimitsCamelland_sctf = "-1 32"; +$Host::MapPlayerLimitsCasern_Cavite_Duel = "-1 32"; +$Host::MapPlayerLimitsCasernCavite_Bounty = "-1 32"; +$Host::MapPlayerLimitsCasernCavite_DM = "-1 32"; +$Host::MapPlayerLimitsCasernCavite_Hunters = "-1 32"; +$Host::MapPlayerLimitsChoke_CTF = "8 24"; +$Host::MapPlayerLimitsCircleofstones_CTF = "10 32"; +$Host::MapPlayerLimitsCirclesEdge_CTF = "6 32"; +$Host::MapPlayerLimitsCirclesEdge_sctf = "6 32"; +$Host::MapPlayerLimitsCloseCombat_CTF = "-1 10"; +$Host::MapPlayerLimitsCloudBurst_CTF = "10 32"; +$Host::MapPlayerLimitsCloudCity_CTF = "6 32"; +$Host::MapPlayerLimitsConfusco_CTF = "8 32"; +$Host::MapPlayerLimitsConstructionYard_CTF = "8 32"; +$Host::MapPlayerLimitsCoppersky_CTF = "-1 32"; +$Host::MapPlayerLimitsCrater71Lak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsDamnation_CTF = "-1 32"; +$Host::MapPlayerLimitsDamnation_sctf = "-1 32"; +$Host::MapPlayerLimitsDamnationLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsDangerousCrossing_nef_CTF = "-1 32"; +$Host::MapPlayerLimitsDangerousCrossing_nef_sctf = "-1 32"; +$Host::MapPlayerLimitsDeathBirdsFly_CTF = "16 32"; +$Host::MapPlayerLimitsDehSwamp_sctf = "8 32"; +$Host::MapPlayerLimitsDesertofDeath_nef_CTF = "8 32"; +$Host::MapPlayerLimitsDesertofDeath_nef_sctf = "8 32"; +$Host::MapPlayerLimitsDesertofDeathLak_Duel = "-1 32"; +$Host::MapPlayerLimitsDesertofDeathLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsDesiccator_CTF = "16 64"; +$Host::MapPlayerLimitsDevilsElbow_CTF = "8 32"; +$Host::MapPlayerLimitsDevilsElbow_sctf = "8 32"; +$Host::MapPlayerLimitsDire_CTF = "6 32"; +$Host::MapPlayerLimitsDire_sctf = "6 32"; +$Host::MapPlayerLimitsDiscord_CTF = "-1 32"; +$Host::MapPlayerLimitsDiscord_sctf = "-1 32"; +$Host::MapPlayerLimitsDisjointed_CTF = "8 32"; +$Host::MapPlayerLimitsDisjointed_sctf = "8 32"; +$Host::MapPlayerLimitsDissention_CTF = "8 32"; +$Host::MapPlayerLimitsDuelersDelight_sctf = "-1 32"; +$Host::MapPlayerLimitsDustLust_CTF = "8 32"; +$Host::MapPlayerLimitsDustLust_sctf = "8 32"; +$Host::MapPlayerLimitsDustToDust_CTF = "-1 32"; +$Host::MapPlayerLimitsDustToDust_Hunters = "-1 32"; +$Host::MapPlayerLimitsDustToDust_sctf = "-1 32"; +$Host::MapPlayerLimitsDustToDust_TeamHunters = "-1 32"; +$Host::MapPlayerLimitsEinfach_CTF = "6 32"; +$Host::MapPlayerLimitsEivoItoxico_CTF = "8 32"; +$Host::MapPlayerLimitsEquinox_CnH = "-1 -1"; +$Host::MapPlayerLimitsEquinox_DM = "-1 32"; +$Host::MapPlayerLimitsEquinox_Duel = "-1 32"; +$Host::MapPlayerLimitsEquinoxLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsEscalade_Bounty = "16 32"; +$Host::MapPlayerLimitsEscalade_DM = "16 -1"; +$Host::MapPlayerLimitsEscalade_Duel = "-1 32"; +$Host::MapPlayerLimitsEscalade_Hunters = "8 -1"; +$Host::MapPlayerLimitsEscalade_Rabbit = "16 -1"; +$Host::MapPlayerLimitsEscalade_TeamHunters = "8 -1"; +$Host::MapPlayerLimitsEscaladeLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsExtractor_CTF = "6 32"; +$Host::MapPlayerLimitsExtractor_sctf = "6 32"; +$Host::MapPlayerLimitsFallout_CTF = "10 32"; +$Host::MapPlayerLimitsFallout_sctf = "10 32"; +$Host::MapPlayerLimitsFenix_CTF = "12 32"; +$Host::MapPlayerLimitsFilteredDust_CTF = "10 32"; +$Host::MapPlayerLimitsFirestorm_CnH = "-1 24"; +$Host::MapPlayerLimitsFirestorm_CTF = "-1 32"; +$Host::MapPlayerLimitsFirestorm_sctf = "-1 32"; +$Host::MapPlayerLimitsFlashpoint_CnH = "-1 -1"; +$Host::MapPlayerLimitsFracas_Duel = "-1 32"; +$Host::MapPlayerLimitsFrozenFuryLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsFullCircle_CTF = "10 32"; +$Host::MapPlayerLimitsGauntlet_Siege = "-1 32"; +$Host::MapPlayerLimitsGehenna_Hunters = "-1 -1"; +$Host::MapPlayerLimitsGehenna_TeamHunters = "-1 -1"; +$Host::MapPlayerLimitsGlade_CTF = "8 32"; +$Host::MapPlayerLimitsGodsRiftLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsGorgon_CTF = "6 32"; +$Host::MapPlayerLimitsGorgon_sctf = "6 32"; +$Host::MapPlayerLimitsHavenLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsHeadstone_CTF = "6 32"; +$Host::MapPlayerLimitsHeadstone_sctf = "6 32"; +$Host::MapPlayerLimitsHighOctane_CTF = "6 32"; +$Host::MapPlayerLimitsHighOctane_sctf = "6 32"; +$Host::MapPlayerLimitsHighTrepidation_CTF = "6 32"; +$Host::MapPlayerLimitsHighWire_CTF = "8 16"; +$Host::MapPlayerLimitsHillside_CTF = "10 64"; +$Host::MapPlayerLimitsHillsideLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsHillsOfSorrow_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsHostileLoch_CTF = "8 32"; +$Host::MapPlayerLimitsHostileLoch_sctf = "8 32"; +$Host::MapPlayerLimitsHostility_CTF = "8 16"; +$Host::MapPlayerLimitsIcebound_Siege = "-1 -1"; +$Host::MapPlayerLimitsIceGulch_CTF = "8 32"; +$Host::MapPlayerLimitsIceRidge_nef_CTF = "8 32"; +$Host::MapPlayerLimitsInfernus_CTF = "8 32"; +$Host::MapPlayerLimitsInnerSanctum_CTF = "-1 32"; +$Host::MapPlayerLimitsInsalubria_CnH = "-1 32"; +$Host::MapPlayerLimitsInvictus_Duel = "-1 32"; +$Host::MapPlayerLimitsIsland_CTF = "-1 32"; +$Host::MapPlayerLimitsIsland_sctf = "-1 32"; +$Host::MapPlayerLimitsIsleOfMan_CTF = "-1 32"; +$Host::MapPlayerLimitsIsleofman_Siege = "-1 32"; +$Host::MapPlayerLimitsJacobsLadder_CnH = "-1 -1"; +$Host::MapPlayerLimitsJadeValley_CTF = "-1 32"; +$Host::MapPlayerLimitsJadeValley_sctf = "-1 32"; +$Host::MapPlayerLimitsKatabatic_CTF = "10 32"; +$Host::MapPlayerLimitsks_braistv_CTF = "10 32"; +$Host::MapPlayerLimitsLakefront_CTF = "8 32"; +$Host::MapPlayerLimitsLogans_Run_CTF = "8 32"; +$Host::MapPlayerLimitsLushLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsMac_FlagArena_CTF = "-1 32"; +$Host::MapPlayerLimitsMac_FlagArena_sctf = "-1 32"; +$Host::MapPlayerLimitsMagmatic_CTF = "10 32"; +$Host::MapPlayerLimitsMagmaticLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsMasada_Siege = "-1 32"; +$Host::MapPlayerLimitsmelee_CTF = "-1 32"; +$Host::MapPlayerLimitsmelee_sctf = "-1 32"; +$Host::MapPlayerLimitsMiniSunDried_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsMinotaur_CTF = "8 32"; +$Host::MapPlayerLimitsMinotaur_sctf = "8 32"; +$Host::MapPlayerLimitsMirage_CTF = "-1 32"; +$Host::MapPlayerLimitsMirage_sctf = "-1 32"; +$Host::MapPlayerLimitsMoonDance_CTF = "8 32"; +$Host::MapPlayerLimitsMountainMist_CTF = "8 32"; +$Host::MapPlayerLimitsMyrkwood_DM = "-1 32"; +$Host::MapPlayerLimitsMyrkWood_Duel = "-1 32"; +$Host::MapPlayerLimitsMyrkwood_Hunters = "-1 32"; +$Host::MapPlayerLimitsMyrkwood_Rabbit = "-1 32"; +$Host::MapPlayerLimitsNatureMagic_CTF = "10 32"; +$Host::MapPlayerLimitsOasis_DM = "-1 32"; +$Host::MapPlayerLimitsOasis_Duel = "-1 32"; +$Host::MapPlayerLimitsoasisintensity_CTF = "-1 16"; +$Host::MapPlayerLimitsoasisintensity_sctf = "-1 16"; +$Host::MapPlayerLimitsOctoberRust_CTF = "16 64"; +$Host::MapPlayerLimitsOverreach_CnH = "8 -1"; +$Host::MapPlayerLimitsPantheon_CTF = "16 64"; +$Host::MapPlayerLimitsPariah_CTF = "-1 32"; +$Host::MapPlayerLimitsPariah_sctf = "-1 32"; +$Host::MapPlayerLimitsPeak_CTF = "-1 32"; +$Host::MapPlayerLimitsPeak_sctf = "-1 32"; +$Host::MapPlayerLimitsPendulum_CTF = "8 32"; +$Host::MapPlayerLimitsPhasmaDustLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsPicnicTable_CTF = "-1 10"; +$Host::MapPlayerLimitsPyroclasm_Duel = "10 32"; +$Host::MapPlayerLimitsQuagmire_CTF = "16 64"; +$Host::MapPlayerLimitsRaindance_nef_CTF = "8 32"; +$Host::MapPlayerLimitsRaindance_nefLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsRamparts_CTF = "10 32"; +$Host::MapPlayerLimitsRasp_Bounty = "-1 32"; +$Host::MapPlayerLimitsRasp_Duel = "-1 32"; +$Host::MapPlayerLimitsRasp_TeamHunters = "-1 32"; +$Host::MapPlayerLimitsRecalescence_CTF = "16 64"; +$Host::MapPlayerLimitsRespite_Siege = "-1 32"; +$Host::MapPlayerLimitsReversion_CTF = "16 64"; +$Host::MapPlayerLimitsRimehold_Hunters = "8 -1"; +$Host::MapPlayerLimitsRiverdance_CTF = "8 32"; +$Host::MapPlayerLimitsRollercoaster_nef_CTF = "8 32"; +$Host::MapPlayerLimitsRoundTheMountain_CTF = "-1 32"; +$Host::MapPlayerLimitsRoundTheMountain_sctf = "-1 32"; +$Host::MapPlayerLimitsS5_Centaur_CTF = "6 32"; +$Host::MapPlayerLimitsS5_Centaur_sctf = "6 32"; +$Host::MapPlayerLimitsS5_Damnation_CTF = "-1 32"; +$Host::MapPlayerLimitsS5_Damnation_sctf = "-1 32"; +$Host::MapPlayerLimitsS5_Drache_CTF = "6 32"; +$Host::MapPlayerLimitsS5_Drache_sctf = "6 32"; +$Host::MapPlayerLimitsS5_HawkingHeat_CTF = "8 32"; +$Host::MapPlayerLimitsS5_HawkingHeat_sctf = "8 32"; +$Host::MapPlayerLimitsS5_Icedance_CTF = "6 32"; +$Host::MapPlayerLimitsS5_Icedance_sctf = "6 32"; +$Host::MapPlayerLimitsS5_Massive_CTF = "6 32"; +$Host::MapPlayerLimitsS5_Massive_sctf = "6 32"; +$Host::MapPlayerLimitsS5_Mimicry_CTF = "6 32"; +$Host::MapPlayerLimitsS5_Mimicry_sctf = "6 32"; +$Host::MapPlayerLimitsS5_Misadventure_CTF = "8 32"; +$Host::MapPlayerLimitsS5_Misadventure_sctf = "8 32"; +$Host::MapPlayerLimitsS5_Mordacity_CTF = "6 32"; +$Host::MapPlayerLimitsS5_Mordacity_sctf = "6 32"; +$Host::MapPlayerLimitsS5_Reynard_CTF = "8 32"; +$Host::MapPlayerLimitsS5_Reynard_sctf = "8 32"; +$Host::MapPlayerLimitsS5_Sherman_CTF = "10 32"; +$Host::MapPlayerLimitsS5_Sherman_sctf = "10 32"; +$Host::MapPlayerLimitsS5_Silenus_CTF = "-1 32"; +$Host::MapPlayerLimitsS5_Silenus_sctf = "-1 32"; +$Host::MapPlayerLimitsS5_Woodymyrk_CTF = "-1 32"; +$Host::MapPlayerLimitsS5_Woodymyrk_sctf = "-1 32"; +$Host::MapPlayerLimitsS8_Cardiac_CTF = "6 32"; +$Host::MapPlayerLimitsS8_Cardiac_sctf = "6 32"; +$Host::MapPlayerLimitsS8_CentralDogma_CTF = "10 32"; +$Host::MapPlayerLimitsS8_Geothermal_CTF = "10 32"; +$Host::MapPlayerLimitsS8_Geothermal_sctf = "10 32"; +$Host::MapPlayerLimitsS8_Mountking_CTF = "8 32"; +$Host::MapPlayerLimitsS8_Opus_CTF = "8 32"; +$Host::MapPlayerLimitsS8_Opus_sctf = "8 32"; +$Host::MapPlayerLimitsS8_Zilch_CTF = "8 32"; +$Host::MapPlayerLimitsS8_Zilch_sctf = "8 32"; +$Host::MapPlayerLimitsSaddiesHill_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsSanctuary_CTF = "12 32"; +$Host::MapPlayerLimitsSandOcean_CTF = "10 32"; +$Host::MapPlayerLimitsSandstorm_CTF = "10 32"; +$Host::MapPlayerLimitsSandStormLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsScarabrae_nef_CTF = "12 32"; +$Host::MapPlayerLimitsShockRidge_CTF = "8 32"; +$Host::MapPlayerLimitsShortFall_CTF = "8 32"; +$Host::MapPlayerLimitsShortFall_sctf = "8 32"; +$Host::MapPlayerLimitsSignal_CTF = "8 32"; +$Host::MapPlayerLimitsSignal_sctf = "8 32"; +$Host::MapPlayerLimitsSirocco_CnH = "8 -1"; +$Host::MapPlayerLimitsSkinnyDipLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsSlapdash_CTF = "16 64"; +$Host::MapPlayerLimitsSmallCrossing_CTF = "-1 12"; +$Host::MapPlayerLimitsSmallCrossing_sctf = "-1 12"; +$Host::MapPlayerLimitsSmallDesertofDeath_CTF = "-1 32"; +$Host::MapPlayerLimitsSmallDesertofDeath_sctf = "-1 32"; +$Host::MapPlayerLimitsSmallMelee_CTF = "-1 12"; +$Host::MapPlayerLimitsSmallMelee_sctf = "-1 12"; +$Host::MapPlayerLimitsSmallTimeCTF_CTF = "-1 32"; +$Host::MapPlayerLimitsSmallTimeCTF_sctf = "-1 32"; +$Host::MapPlayerLimitsSnowcone_CTF = "8 32"; +$Host::MapPlayerLimitsSnowcone_sctf = "8 32"; +$Host::MapPlayerLimitsSolsDescentLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsSoylentGreen_CTF = "8 18"; +$Host::MapPlayerLimitsStarfallen_CTF = "16 64"; +$Host::MapPlayerLimitsStarIce_CTF = "10 32"; +$Host::MapPlayerLimitsStonehenge_nef_CTF = "8 32"; +$Host::MapPlayerLimitsSundance_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsSunDried_Bounty = "8 -1"; +$Host::MapPlayerLimitsSunDried_DM = "8 -1"; +$Host::MapPlayerLimitsSunDried_Duel = "-1 32"; +$Host::MapPlayerLimitsSunDriedLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsSuperHappyBouncyFunTime_CTF = "-1 32"; +$Host::MapPlayerLimitsSuperHappyBouncyFunTime_sctf = "-1 32"; +$Host::MapPlayerLimitsSurreal_CTF = "12 32"; +$Host::MapPlayerLimitsSurro_CTF = "8 32"; +$Host::MapPlayerLimitsTalus_Bounty = "-1 32"; +$Host::MapPlayerLimitsTalus_Duel = "-1 32"; +$Host::MapPlayerLimitsTenebrousCTF_CTF = "8 32"; +$Host::MapPlayerLimitsTheClocktower_CTF = "6 12"; +$Host::MapPlayerLimitsTheFray_CTF = "6 32"; +$Host::MapPlayerLimitsTheFray_sctf = "6 32"; +$Host::MapPlayerLimitsThinIce_CTF = "16 64"; +$Host::MapPlayerLimitsTibbaw_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsTitan_CTF = "10 32"; +$Host::MapPlayerLimitsTitan_sctf = "10 32"; +$Host::MapPlayerLimitsTitanLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsTitForTat_CTF = "-1 8"; +$Host::MapPlayerLimitsTombstone_CTF = "16 32"; +$Host::MapPlayerLimitsTombstone_Duel = "-1 32"; +$Host::MapPlayerLimitsTreasureIslandLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsTrident_CTF = "-1 32"; +$Host::MapPlayerLimitsTrident_Siege = "-1 32"; +$Host::MapPlayerLimitsTWL2_Bleed_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_BlueMoon_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_CanyonCrusadeDeluxe_CTF = "6 32"; +$Host::MapPlayerLimitsTWL2_CanyonCrusadeDeluxe_sctf = "6 32"; +$Host::MapPlayerLimitsTWL2_Celerity_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_Celerity_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_CloakOfNight_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_Crevice_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_Crevice_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_Dissention_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_Drifts_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_Drifts_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_Drorck_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_Drorck_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_FrozenGlory_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_FrozenGlory_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_FrozenHope_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_FrozenHope_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_Hildebrand_CTF = "6 32"; +$Host::MapPlayerLimitsTWL2_Hildebrand_sctf = "6 32"; +$Host::MapPlayerLimitsTWL2_IceDagger_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_IceDagger_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_JaggedClaw_CTF = "6 32"; +$Host::MapPlayerLimitsTWL2_JaggedClaw_sctf = "6 32"; +$Host::MapPlayerLimitsTWL2_Magnum_CTF = "10 32"; +$Host::MapPlayerLimitsTWL2_MidnightMayhemDeluxe_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_MidnightMayhemDeluxe_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_MuddySwamp_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_MuddySwamp_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_MuddySwampLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsTWL2_Norty_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_Norty_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_Ocular_CTF = "6 32"; +$Host::MapPlayerLimitsTWL2_Ocular_sctf = "6 32"; +$Host::MapPlayerLimitsTWL2_RoughLand_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_RoughLand_sctf = "8 32"; +$Host::MapPlayerLimitsTWL2_Ruined_CTF = "10 32"; +$Host::MapPlayerLimitsTWL2_Ruined_sctf = "10 32"; +$Host::MapPlayerLimitsTWL2_Skylight_CTF = "8 32"; +$Host::MapPlayerLimitsTWL2_Skylight_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_BaNsHee_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_BaNsHee_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_BeachBlitz_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_BeachBlitz_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_BeachBlitzLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsTWL_Boss_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Boss_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Chokepoint_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Cinereous_CTF = "6 32"; +$Host::MapPlayerLimitsTWL_Cinereous_sctf = "6 32"; +$Host::MapPlayerLimitsTWL_Clusterfuct_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Clusterfuct_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Crossfire_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Crossfire_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Curtilage_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Curtilage_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Damnation_CTF = "6 32"; +$Host::MapPlayerLimitsTWL_Damnation_sctf = "6 32"; +$Host::MapPlayerLimitsTWL_DangerousCrossing_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_DangerousCrossing_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_DeadlyBirdsSong_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_DeadlyBirdsSong_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Deserted_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Deserted_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Feign_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Feign_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Frostclaw_CTF = "10 32"; +$Host::MapPlayerLimitsTWL_Frostclaw_sctf = "10 32"; +$Host::MapPlayerLimitsTWL_Frozen_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Harvester_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Horde_CTF = "10 32"; +$Host::MapPlayerLimitsTWL_Katabatic_CTF = "10 32"; +$Host::MapPlayerLimitsTWL_Neve_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Neve_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_NoShelter_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_NoShelter_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_OsIris_CTF = "6 32"; +$Host::MapPlayerLimitsTWL_OsIris_sctf = "6 32"; +$Host::MapPlayerLimitsTWL_Pandemonium_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Pandemonium_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Ramparts_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Ramparts_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Rollercoaster_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_Sandstorm_CTF = "12 32"; +$Host::MapPlayerLimitsTWL_Snowblind_CTF = "10 32"; +$Host::MapPlayerLimitsTWL_Starfallen_CTF = "10 32"; +$Host::MapPlayerLimitsTWL_Stonehenge_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_Stonehenge_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_SubZero_CTF = "10 32"; +$Host::MapPlayerLimitsTWL_Titan_CTF = "10 32"; +$Host::MapPlayerLimitsTWL_Titan_sctf = "10 32"; +$Host::MapPlayerLimitsTWL_WilderZone_CTF = "8 32"; +$Host::MapPlayerLimitsTWL_WilderZone_sctf = "8 32"; +$Host::MapPlayerLimitsTWL_WoodyMyrk_CTF = "8 32"; +$Host::MapPlayerLimitsUltimaThule_Siege = "8 -1"; +$Host::MapPlayerLimitsUnderhill_Bounty = "-1 32"; +$Host::MapPlayerLimitsUnderhill_DM = "-1 -1"; +$Host::MapPlayerLimitsUnderhill_Duel = "8 32"; +$Host::MapPlayerLimitsVauban_CTF = "10 32"; +$Host::MapPlayerLimitsVaubanLak_Duel = "-1 32"; +$Host::MapPlayerLimitsVaubanLak_LakRabbit = "-1 32"; +$Host::MapPlayerLimitsWhiteout_Bounty = "8 -1"; +$Host::MapPlayerLimitsWhiteout_DM = "8 -1"; +$Host::MapPlayerLimitsWhiteout_Duel = "-1 32"; +$Host::MarkDnDObjectives = 1; +$Host::MaxBotDifficulty = "0.75"; +$Host::MaxMessageLen = 120; +$Host::MaxPlayers = "64"; +$Host::MinBotDifficulty = "0.5"; +$Host::MissionType = "LakRabbit"; +$Host::NoSmurfs = 1; +$Host::PlayerRespawnTimeout = "60"; +$Host::Port = "28000"; +$Host::PureServer = 0; +$Host::ShowEndingPlayerScores = 1; +$Host::ShowIngamePlayerScores = 1; +$Host::Siege::Halftime = 20000; +$Host::SuperAdminList = ""; +$Host::TeamDamageOn = "1"; +$Host::TeamName0 = "Unassigned"; +$Host::TeamName1 = "Storm"; +$Host::TeamName2 = "Inferno"; +$Host::TeamName3 = "Starwolf"; +$Host::TeamName4 = "Diamond Sword"; +$Host::TeamName5 = "Blood Eagle"; +$Host::TeamName6 = "Phoenix"; +$Host::TeamSkin0 = "blank"; +$Host::TeamSkin1 = "base"; +$Host::TeamSkin2 = "baseb"; +$Host::TeamSkin3 = "swolf"; +$Host::TeamSkin4 = "dsword"; +$Host::TeamSkin5 = "beagle"; +$Host::TeamSkin6 = "cotp"; +$Host::TimeLimit = "45"; +$Host::TN::beat = 3; +$Host::TN::echo = 1; +$Host::TournamentMode = "0"; +$Host::useCustomSkins = 1; +$Host::VotePassPercent = "60"; +$Host::VoteSpread = 20; +$Host::VoteTime = "30"; +$Host::warmupTime = "20";