Updated Swagnuts & Some Mod Configs

This commit is contained in:
Rage 2025-01-12 22:40:35 -05:00
parent 73e3f57758
commit c02a35612e
350 changed files with 27968 additions and 29 deletions

View File

@ -123,7 +123,7 @@ scavMaxGroupSize = 4
# Setting type: Int32
# Default value: 4
# Acceptable value range: From 0 to 10
pmcMaxGroupSize = 5
pmcMaxGroupSize = 4
## Increases chances of pmc groups spawning, doesn't dramatically increase quantity.
# Setting type: Boolean
@ -133,7 +133,7 @@ morePmcGroups On/Off = false
## Increases chances of scav groups spawning, doesn't dramatically increase quantity.
# Setting type: Boolean
# Default value: false
moreScavGroups On/Off = true
moreScavGroups On/Off = false
## Max bots permitted in any particular spawn zone, recommend not to touch this.
# Setting type: Int32

View File

@ -53,6 +53,10 @@ Gating level = 0
# Default value: 0
Gating level = 0
1.Manual gating increase = KeypadPlus
2.Manual gating decrease = KeypadMinus
[1.Globals]
Mask size multiplier = 1.07

View File

@ -5,7 +5,7 @@ version=d2025.1.12.0
newestVersion=
category="1,"
nexusFileStatus=1
installationFile=SWAG-Donuts-v4.0.0RC2-SPT310x.7z
installationFile=SWAG-Donuts-v4.0.0RC3-SPT310x.7z
repository=Nexus
ignoredVersion=
comments=

View File

@ -30,7 +30,7 @@
"factory": 0,
"factory_night": 2,
"groundzero": 0,
"groundzero_high": 44,
"groundzero_high": 4,
"interchange": 0,
"laboratory": 0,
"lighthouse": 0,

View File

@ -230,7 +230,7 @@ class SWAG implements IPreSptLoadMod, IPostDBLoadMod
!config?.UseDefaultSpawns?.TriggeredWaves
)
{
SWAG.disableSpawnSystems();
SWAG.disableSpawnSystems(container);
}
// disable more vanilla spawn stuff
@ -240,10 +240,6 @@ class SWAG implements IPreSptLoadMod, IPostDBLoadMod
locationConfig.addCustomBotWavesToMaps = false;
locationConfig.enableBotTypeLimits = false;
logger.info(
"SWAG: Vanilla spawn systems disabled"
);
return output;
}
}],
@ -511,8 +507,6 @@ class SWAG implements IPreSptLoadMod, IPostDBLoadMod
{
SWAG.spawnCustom(custom, globalmap);
});
logger.warning(`SWAG: Configured boss spawns for map ${globalmap}`);
});
}
@ -753,20 +747,20 @@ class SWAG implements IPreSptLoadMod, IPostDBLoadMod
return Math.floor(Math.random() * (max - min + 1)) + min;
}
static disableSpawnSystems(): void
static disableSpawnSystems(container: DependencyContainer): void
{
let map: keyof ILocations;
for (map in locations)
{
if (map === "base" || map === "hideout")
{
continue;
}
// locations[map].base.OfflineNewSpawn = false;
// locations[map].base.OfflineOldSpawn = true;
locations[map].base.NewSpawn = false;
locations[map].base.OldSpawn = true;
const DB = container.resolve("DatabaseService").getTables();
const locations = Object.keys(DB.locations);
for (const loc of locations) {
const base = DB.locations[loc].base;
if (!base) continue;
// Set spawn systems
base.NewSpawn = false;
base.OfflineNewSpawn = false;
base.OldSpawn = true;
base.OfflineOldSpawn = true;
}
logger.info("SWAG: Spawn Systems Set")
}
static clearDefaultSpawns(): void

View File

@ -0,0 +1,66 @@
[
{
"RandomScenarioConfig": "Live Like (Random)",
"Presets": [
{
"Name": "live-like",
"Weight": 50
},
{
"Name": "live-like-alt",
"Weight": 50
}
]
},
{
"RandomScenarioConfig": "Starting PMCs Only (Random)",
"Presets": [
{
"Name": "starting-pmcs-only-live-like",
"Weight": 50
},
{
"Name": "starting-pmcs-only-live-like-alt",
"Weight": 50
},
{
"Name": "starting-pmcs-only-morescavs",
"Weight": 25
}
]
},
{
"RandomScenarioConfig": "A Whole Lotta SCAVs (Random)",
"Presets": [
{
"Name": "morescavs",
"Weight": 50
},
{
"Name": "starting-pmcs-only-morescavs",
"Weight": 25
}
]
},
{
"RandomScenarioConfig": "Death Wish (Random)",
"Presets": [
{
"Name": "impossibleraids",
"Weight": 75
},
{
"Name": "crazyraids",
"Weight": 75
},
{
"Name": "morepmcs",
"Weight": 25
},
{
"Name": "morescavs",
"Weight": 25
}
]
}
]

View File

@ -0,0 +1,350 @@
[
{
"Name": "live-like",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "live-like-alt",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "morescavs",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 10,
"LaboratoryBotLimit": 8,
"LighthouseBotLimit": 10,
"ReserveBotLimit": 10,
"ShorelineBotLimit": 11,
"WoodsBotLimit": 11,
"CustomsBotLimit": 10,
"TarkovStreetsBotLimit": 11,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "morepmcs",
"PMCBotLimitPresets": {
"FactoryBotLimit": 8,
"InterchangeBotLimit": 12,
"LaboratoryBotLimit": 10,
"LighthouseBotLimit": 12,
"ReserveBotLimit": 10,
"ShorelineBotLimit": 12,
"WoodsBotLimit": 12,
"CustomsBotLimit": 12,
"TarkovStreetsBotLimit": 12,
"GroundZeroBotLimit": 10,
"GroundZeroHighBotLimit": 10
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "crazyraids",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "impossibleraids",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "quietraids",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "scav-raids",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "starting-pmcs-only-live-like",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 10,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 10,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 10,
"WoodsBotLimit": 12,
"CustomsBotLimit": 10,
"TarkovStreetsBotLimit": 12,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "starting-pmcs-only-live-like-alt",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 10,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 10,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 10,
"WoodsBotLimit": 12,
"CustomsBotLimit": 10,
"TarkovStreetsBotLimit": 12,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "starting-pmcs-only-morescavs",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 10,
"LaboratoryBotLimit": 8,
"LighthouseBotLimit": 10,
"ReserveBotLimit": 10,
"ShorelineBotLimit": 11,
"WoodsBotLimit": 11,
"CustomsBotLimit": 10,
"TarkovStreetsBotLimit": 11,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
},
{
"Name": "starting-pmcs-only-quietraids",
"PMCBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 9,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 9,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
},
"SCAVBotLimitPresets": {
"FactoryBotLimit": 6,
"InterchangeBotLimit": 9,
"LaboratoryBotLimit": 6,
"LighthouseBotLimit": 9,
"ReserveBotLimit": 9,
"ShorelineBotLimit": 9,
"WoodsBotLimit": 9,
"CustomsBotLimit": 9,
"TarkovStreetsBotLimit": 10,
"GroundZeroBotLimit": 8,
"GroundZeroHighBotLimit": 8
}
}
]

View File

@ -0,0 +1,24 @@
{
"Maps": {
"bigmap": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,129 @@
{
"Maps": {
"bigmap": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 210,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Black",
"Zone_Yellow",
"Zone_Blue_North"
]
},
{
"GroupNum": 54,
"TriggerTimer": 340,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 55,
"TriggerTimer": 390,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 16,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"factory4_night": {
"PMC": {
"MinCount": 4,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"start",
"all"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 2,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"factory4_night": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 170,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"factory4_day": {
"PMC": {
"MinCount": 4,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"start",
"all"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 2,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"factory4_day": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 170,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"sandbox_high": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"sandbox_high": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"sandbox": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"sandbox": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 220,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 290,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"interchange": {
"PMC": {
"MinCount": 8,
"MaxCount": 12,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,118 @@
{
"Maps": {
"interchange": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 1,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"Zone_Orange",
"Zone_Black",
"Zone_Yellow"
]
},
{
"GroupNum": 2,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 160,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 210,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Orange",
"Zone_Black",
"Zone_Yellow"
]
},
{
"GroupNum": 53,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 320,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"laboratory": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 0,
"MaxCount": 0,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,48 @@
{
"Maps": {
"laboratory": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 230,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": []
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"lighthouse": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,104 @@
{
"Maps": {
"lighthouse": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 160,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Red",
"Zone_Yellow",
"Zone_Purple",
"Zone_Black"
]
},
{
"GroupNum": 52,
"TriggerTimer": 220,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 53,
"TriggerTimer": 270,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"rezervbase": {
"PMC": {
"MinCount": 6,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,114 @@
{
"Maps": {
"rezervbase": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 320,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"shoreline": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,116 @@
{
"Maps": {
"shoreline": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 240,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Pink",
"Zone_Blue",
"Zone_Orange"
]
},
{
"GroupNum": 53,
"TriggerTimer": 270,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 320,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"tarkovstreets": {
"PMC": {
"MinCount": 6,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 0,
"MaxCount": 3,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,114 @@
{
"Maps": {
"tarkovstreets": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 230,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 270,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 330,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 15,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"woods": {
"PMC": {
"MinCount": 8,
"MaxCount": 12,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 3,
"MaxCount": 5,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,130 @@
{
"Maps": {
"woods": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 230,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 210,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Red",
"Zone_Pink",
"Zone_Orange",
"Zone_Black"
]
},
{
"GroupNum": 53,
"TriggerTimer": 270,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 54,
"TriggerTimer": 320,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 55,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 90,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"bigmap": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,129 @@
{
"Maps": {
"bigmap": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 210,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 100,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 220,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Black",
"Zone_Yellow",
"Zone_Blue_North"
]
},
{
"GroupNum": 54,
"TriggerTimer": 280,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 55,
"TriggerTimer": 320,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 16,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"factory4_night": {
"PMC": {
"MinCount": 4,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"start",
"all"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 2,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"factory4_night": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 160,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 230,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"factory4_day": {
"PMC": {
"MinCount": 4,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"start",
"all"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 2,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"factory4_day": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 110,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"sandbox_high": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"sandbox_high": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 130,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"sandbox": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"sandbox": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 110,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 230,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"interchange": {
"PMC": {
"MinCount": 8,
"MaxCount": 12,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,118 @@
{
"Maps": {
"interchange": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 1,
"TriggerTimer": 160,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"Zone_Orange",
"Zone_Black",
"Zone_Yellow"
]
},
{
"GroupNum": 2,
"TriggerTimer": 210,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 130,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Orange",
"Zone_Black",
"Zone_Yellow"
]
},
{
"GroupNum": 53,
"TriggerTimer": 240,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 15,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 310,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 17,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"laboratory": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 0,
"MaxCount": 0,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,48 @@
{
"Maps": {
"laboratory": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 160,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 220,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": []
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"lighthouse": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,104 @@
{
"Maps": {
"lighthouse": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 220,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 130,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Red",
"Zone_Yellow",
"Zone_Purple",
"Zone_Black"
]
},
{
"GroupNum": 52,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 53,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 16,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"rezervbase": {
"PMC": {
"MinCount": 6,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,114 @@
{
"Maps": {
"rezervbase": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 130,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 240,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 310,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 16,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"shoreline": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,116 @@
{
"Maps": {
"shoreline": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 160,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 230,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Pink",
"Zone_Blue",
"Zone_Orange"
]
},
{
"GroupNum": 53,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 15,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"tarkovstreets": {
"PMC": {
"MinCount": 6,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 0,
"MaxCount": 3,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,114 @@
{
"Maps": {
"tarkovstreets": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 150,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 210,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 110,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 170,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 240,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 290,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 15,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"woods": {
"PMC": {
"MinCount": 8,
"MaxCount": 12,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 3,
"MaxCount": 5,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,130 @@
{
"Maps": {
"woods": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 90,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 160,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 210,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 60,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 110,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 13,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Red",
"Zone_Pink",
"Zone_Orange",
"Zone_Black"
]
},
{
"GroupNum": 53,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 54,
"TriggerTimer": 310,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 15,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 55,
"TriggerTimer": 380,
"TriggerDistance": 800,
"SpawnChance": 100,
"MaxTriggersBeforeCooldown": 17,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,27 @@
{
"Maps": {
"bigmap": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot",
"Zone_Blue",
"Zone_Blue_South",
"Zone_Black"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,101 @@
{
"Maps": {
"bigmap": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 350,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 400,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 50,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 52,
"TriggerTimer": 310,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"factory4_night": {
"PMC": {
"MinCount": 4,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"start",
"all"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 2,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,80 @@
{
"Maps": {
"factory4_night": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 2,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"start"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 50,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 51,
"TriggerTimer": 270,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all",
"start"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"factory4_day": {
"PMC": {
"MinCount": 4,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"start",
"all"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 2,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,80 @@
{
"Maps": {
"factory4_day": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 2,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"start"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 50,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 51,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all",
"start"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"sandbox_high": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"hotspot"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,75 @@
{
"Maps": {
"sandbox_high": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 50,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"sandbox": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"hotspot"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,75 @@
{
"Maps": {
"sandbox": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 350,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 50,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 280,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,27 @@
{
"Maps": {
"interchange": {
"PMC": {
"MinCount": 8,
"MaxCount": 12,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot",
"Zone_Orange",
"Zone_Black",
"Zone_Yellow"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,90 @@
{
"Maps": {
"interchange": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 1,
"TriggerTimer": 350,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"Zone_Orange",
"Zone_Black",
"Zone_Yellow"
]
},
{
"GroupNum": 2,
"TriggerTimer": 420,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 210,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 52,
"TriggerTimer": 280,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"laboratory": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
"SCAV": {
"MinCount": 0,
"MaxCount": 0,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,48 @@
{
"Maps": {
"laboratory": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 420,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": []
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"lighthouse": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"hotspot"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,104 @@
{
"Maps": {
"lighthouse": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 420,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Red",
"Zone_Yellow",
"Zone_Purple",
"Zone_Black"
]
},
{
"GroupNum": 52,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 53,
"TriggerTimer": 320,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"rezervbase": {
"PMC": {
"MinCount": 6,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"hotspot"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"rezervbase": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 340,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 410,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 52,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"shoreline": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"hotspot"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"shoreline": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 350,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 420,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 52,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"tarkovstreets": {
"PMC": {
"MinCount": 8,
"MaxCount": 12,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"hotspot"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"tarkovstreets": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 430,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 200,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 52,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"woods": {
"PMC": {
"MinCount": 8,
"MaxCount": 12,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"hotspot"
]
},
"SCAV": {
"MinCount": 3,
"MaxCount": 5,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,101 @@
{
"Maps": {
"woods": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 410,
"TriggerDistance": 800,
"SpawnChance": 60,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 140,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 53,
"TriggerTimer": 310,
"TriggerDistance": 800,
"SpawnChance": 80,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"bigmap": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,129 @@
{
"Maps": {
"bigmap": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 420,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 170,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 240,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 280,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 11,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Black",
"Zone_Yellow",
"Zone_Blue_North"
]
},
{
"GroupNum": 54,
"TriggerTimer": 330,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 55,
"TriggerTimer": 380,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 14,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"factory4_night": {
"PMC": {
"MinCount": 4,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"start",
"all"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 2,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,94 @@
{
"Maps": {
"factory4_night": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 2,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"start"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 51,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 52,
"TriggerTimer": 240,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 53,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all",
"start"
]
}
]
}
}
}

View File

@ -0,0 +1,25 @@
{
"Maps": {
"factory4_day": {
"PMC": {
"MinCount": 4,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"start",
"all"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 2,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,94 @@
{
"Maps": {
"factory4_day": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 2,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all",
"start"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 51,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 52,
"TriggerTimer": 240,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all",
"start"
]
},
{
"GroupNum": 53,
"TriggerTimer": 280,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all",
"start"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"sandbox_high": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"sandbox_high": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"sandbox": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 1,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,88 @@
{
"Maps": {
"sandbox": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 250,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"interchange": {
"PMC": {
"MinCount": 8,
"MaxCount": 12,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,118 @@
{
"Maps": {
"interchange": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 1,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"Zone_Orange",
"Zone_Black",
"Zone_Yellow"
]
},
{
"GroupNum": 2,
"TriggerTimer": 430,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 190,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 260,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Orange",
"Zone_Black",
"Zone_Yellow"
]
},
{
"GroupNum": 53,
"TriggerTimer": 310,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 9,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"laboratory": {
"PMC": {
"MinCount": 5,
"MaxCount": 8,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 0,
"MaxCount": 0,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,48 @@
{
"Maps": {
"laboratory": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 350,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 4,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 410,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": []
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"lighthouse": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,104 @@
{
"Maps": {
"lighthouse": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 1,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 2,
"TriggerTimer": 430,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 180,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 7,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"Zone_Red",
"Zone_Yellow",
"Zone_Purple",
"Zone_Black"
]
},
{
"GroupNum": 52,
"TriggerTimer": 230,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 53,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"rezervbase": {
"PMC": {
"MinCount": 6,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

View File

@ -0,0 +1,114 @@
{
"Maps": {
"rezervbase": {
"PMC": [
{
"GroupNum": 1,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 3,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
},
{
"GroupNum": 2,
"TriggerTimer": 360,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 3,
"TriggerTimer": 430,
"TriggerDistance": 800,
"SpawnChance": 55,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"all"
]
}
],
"SCAV": [
{
"GroupNum": 50,
"TriggerTimer": 120,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 5,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 51,
"TriggerTimer": 170,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 6,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 52,
"TriggerTimer": 230,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 8,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
},
{
"GroupNum": 53,
"TriggerTimer": 300,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 10,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"hotspot"
]
},
{
"GroupNum": 54,
"TriggerTimer": 370,
"TriggerDistance": 800,
"SpawnChance": 75,
"MaxTriggersBeforeCooldown": 12,
"IgnoreTimerFirstSpawn": false,
"MinGroupSize": 1,
"MaxGroupSize": 3,
"Zones": [
"all"
]
}
]
}
}
}

View File

@ -0,0 +1,24 @@
{
"Maps": {
"shoreline": {
"PMC": {
"MinCount": 7,
"MaxCount": 10,
"MinGroupSize": 1,
"MaxGroupSize": 5,
"Zones": [
"start"
]
},
"SCAV": {
"MinCount": 2,
"MaxCount": 4,
"MinGroupSize": 1,
"MaxGroupSize": 2,
"Zones": [
"all"
]
}
}
}
}

Some files were not shown because too many files have changed in this diff Show More