0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-12 15:50:42 -05:00

Merge branch '3.10.1-dev'

This commit is contained in:
Chomp 2024-12-01 10:22:36 +00:00
commit ad41c249b8
108 changed files with 494 additions and 123621 deletions

62
.gitattributes vendored
View File

@ -1,64 +1,4 @@
# Normalize Line Endings
* text=auto eol=lf
# LFS File Listing
project/assets/database/locations/interchange/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/interchange/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/interchange/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/interchange/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/lighthouse/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/lighthouse/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/lighthouse/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/lighthouse/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/shoreline/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/shoreline/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/shoreline/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/shoreline/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/tarkovstreets/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/tarkovstreets/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/tarkovstreets/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/tarkovstreets/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/woods/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/woods/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/woods/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/woods/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/factory4_day/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/factory4_day/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/factory4_day/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/factory4_day/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/factory4_night/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/factory4_night/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/factory4_night/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/factory4_night/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/rezervbase/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/rezervbase/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/rezervbase/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/rezervbase/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/bigmap/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/bigmap/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/bigmap/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/bigmap/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/laboratory/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/laboratory/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/laboratory/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/laboratory/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/sandbox/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/sandbox/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/sandbox/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/sandbox/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/sandbox_high/looseLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/sandbox_high/staticLoot.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/sandbox_high/staticContainers.json filter=lfs diff=lfs merge=lfs -text
project/assets/database/locations/sandbox_high/staticAmmo.json filter=lfs diff=lfs merge=lfs -text
project/assets/compressed/database/locations.7z filter=lfs diff=lfs merge=lfs -text

4
.gitignore vendored
View File

@ -2,6 +2,7 @@
*.exe
*.zip
*.d.ts
project/assets/database/locations/
project/build/
project/obj/
project/dist/
@ -32,6 +33,9 @@ yarn.lock
## windows
desktop.ini
## OSX
.DS_Store
## parcel
.parcel-cache/

View File

@ -51,27 +51,29 @@ To prepare the project for development you will need to:
The following commands are available after the initial setup. Run them with `npm run <command>`.
| Command | Description |
|----------------------|---------------------------------------------------------------------------|
| `check:circular` | Check for circular dependencies in the project. |
| `lint` | Check the project for coding standards issues using Biome. |
| `lint:fix` | Automatically fix coding standards issues using Biome. |
| `style` | Check the project for formatting issues using Biome. |
| `style:fix` | Automatically fix formatting issues using Biome. |
| `format` | Automatically fix all coding standards and formatting issues using Biome. |
| `test` | Run all tests. |
| `test:watch` | Run tests in watch mode. Tests will re-run when files are changed. |
| `test:coverage` | Run tests and generate a coverage report. |
| `test:ui` | Run tests in UI mode. This will open a browser window to view tests. |
| `build:release` | Build the project for release. |
| `build:debug` | Build the project for debugging. |
| `build:bleeding` | Build the project on the bleeding edge. |
| `build:bleedingmods` | Build the project on the bleeding edge with mods. |
| `run:build` | Run the project in build mode. |
| `run:debug` | Run the project in debug mode. |
| `run:profiler` | Run the project in profiler mode. |
| `gen:types` | Generate types for the project. |
| `gen:docs` | Generate documentation for the project. |
| Command | Description |
|-----------------------|---------------------------------------------------------------------------|
| `check:circular` | Check for circular dependencies in the project. |
| `lint` | Check the project for coding standards issues using Biome. |
| `lint:fix` | Automatically fix coding standards issues using Biome. |
| `style` | Check the project for formatting issues using Biome. |
| `style:fix` | Automatically fix formatting issues using Biome. |
| `format` | Automatically fix all coding standards and formatting issues using Biome. |
| `test` | Run all tests. |
| `test:watch` | Run tests in watch mode. Tests will re-run when files are changed. |
| `test:coverage` | Run tests and generate a coverage report. |
| `test:ui` | Run tests in UI mode. This will open a browser window to view tests. |
| `build:release` | Build the project for release. |
| `build:debug` | Build the project for debugging. |
| `build:bleeding` | Build the project on the bleeding edge. |
| `build:bleedingmods` | Build the project on the bleeding edge with mods. |
| `run:build` | Run the project in build mode. |
| `run:debug` | Run the project in debug mode. |
| `run:profiler` | Run the project in profiler mode. |
| `gen:types` | Generate types for the project. |
| `gen:docs` | Generate documentation for the project. |
| `database:compress` | Compress database files from working directory into archive. |
| `database:decompress` | Decompress database archives into working directory. |
### Debugging
@ -88,7 +90,7 @@ We're really excited that you're interested in contributing! Before submitting y
### Branches
- **master**
The default branch used for the latest stable release. This branch is protected and typically is only merges with release branches.
The default branch used for the latest stable release. This branch is protected and typically is only merged with release branches.
- **3.10.X-DEV**
Development for the next hotfix release. Hotfix releases include bug fixes and minor features that do not affect the coding structure of the project. Special care is taken to not break server mod stability. These always target the same version of EFT as the last minor release.
- **3.11.0-DEV**

BIN
project/assets/compressed/database/locations.7z (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,5 +1,5 @@
{
"sptVersion": "3.10.0",
"sptVersion": "3.10.1",
"projectName": "SPT",
"compatibleTarkovVersion": "0.15.5.33420",
"serverName": "SPT Server",

View File

@ -1,32 +0,0 @@
{
"locations": {},
"paths": [{
"Source": "653e6760052c01c1c805532f",
"Destination": "5714dc692459777137212e12"
}, {
"Source": "5b0fc42d86f7744a585f9105",
"Destination": "5714dc692459777137212e12"
}, {
"Source": "5714dc692459777137212e12",
"Destination": "5714dbc024597771384a510d"
}, {
"Source": "5714dbc024597771384a510d",
"Destination": "56f40101d2720b2a4d8b45d6"
}, {
"Source": "56f40101d2720b2a4d8b45d6",
"Destination": "55f2d3fd4bdc2d5f408b4567"
}, {
"Source": "55f2d3fd4bdc2d5f408b4567",
"Destination": "5704e3c2d2720bac5b8b4567"
}, {
"Source": "5704e3c2d2720bac5b8b4567",
"Destination": "5704e5fad2720bc05b8b4567"
}, {
"Source": "5704e5fad2720bc05b8b4567",
"Destination": "5704e4dad2720bb55b8b4567"
}, {
"Source": "5704e4dad2720bb55b8b4567",
"Destination": "5704e554d2720bac5b8b456e"
}
]
}

View File

@ -1,600 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Customs,Boiler Tanks",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "EXFIL_ZB013",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 50.0,
"ChancePVE": 50.0,
"Count": 5000,
"CountPve": 0,
"EntryPoints": "Customs,Boiler Tanks",
"EventAvailable": false,
"ExfiltrationTime": 60.0,
"ExfiltrationTimePVE": 60.0,
"ExfiltrationType": "SharedTimer",
"Id": "5449016a4bdc2d6f028b456f",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Dorms V-Ex",
"PassageRequirement": "TransferItem",
"PlayersCount": 4,
"PlayersCountPVE": 4,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Item",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Customs",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "ZB-1011",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Boiler Tanks",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Crossroads",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 50.0,
"ChancePVE": 50.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Customs",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Old Gas Station",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Boiler Tanks",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Trailer Park",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Boiler Tanks",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "RUAF Roadblock",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 50.0,
"ChancePVE": 50.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Boiler Tanks",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Smuggler's Boat",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 50.0,
"ChancePVE": 50.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Customs",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "ZB-1012",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Shack",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Beyond Fuel Tank",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Railroad To Military Base",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Old Road Gate",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Sniper Roadblock",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Railroad To Port",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Crossroads",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Trailer Park Workers Shack",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Railroad To Tarkov",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "RUAF Roadblock_scav",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Warehouse 17",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Factory Shacks",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Warehouse 4",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Old Azs Gate",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Factory Far Corner",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Administration Gate",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Military Checkpoint",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,592 +0,0 @@
{
"Enabled": false,
"Locked": false,
"Insurance": false,
"SafeLocation": false,
"Name": "Arena",
"Scene": {
"path": "maps/develop_preset.bundle",
"rcid": "develop.scenespreset.asset"
},
"Area": 0,
"RequiredPlayerLevel": 1,
"MinPlayers": 1,
"MaxPlayers": 10,
"exit_count": 0,
"exit_access_time": 0,
"exit_time": 0,
"IconX": 156,
"IconY": 551,
"waves": [
{
"number": 0,
"time_min": 0,
"time_max": 10,
"slots_min": 1,
"slots_max": 2,
"BotSide": "Savage",
"BotPreset": "normal",
"SpawnPoints": "BotZoneMain",
"WildSpawnType": "assault",
"isPlayers": true
},
{
"number": 1,
"time_min": 10,
"time_max": 120,
"slots_min": 2,
"slots_max": 3,
"BotSide": "Savage",
"BotPreset": "easy",
"SpawnPoints": "BotZoneMain",
"WildSpawnType": "assault",
"isPlayers": true
},
{
"number": 0,
"time_min": 120,
"time_max": 240,
"slots_min": 3,
"slots_max": 4,
"BotSide": "Savage",
"BotPreset": "hard",
"SpawnPoints": "BotZoneMain",
"WildSpawnType": "assault",
"isPlayers": true
}
],
"limits": [],
"AveragePlayTime": 2,
"AveragePlayerLevel": 10,
"escape_time_limit": 60000,
"Rules": "Normal",
"IsSecret": false,
"doors": [],
"tmp_location_field_remove_me": 0,
"MinDistToExitPoint": 0,
"MaxDistToFreePoint": 900,
"MinDistToFreePoint": 10,
"MaxBotPerZone": 0,
"OpenZones": "",
"OcculsionCullingEnabled": true,
"GlobalLootChanceModifier": 0,
"OldSpawn": true,
"NewSpawn": false,
"BotMax": 5,
"BotStart": 30,
"BotStop": 2400,
"BotMaxTimePlayer": 0,
"BotSpawnTimeOnMin": 0,
"BotSpawnTimeOnMax": 0,
"BotSpawnTimeOffMin": 0,
"BotSpawnTimeOffMax": 0,
"BotMaxPlayer": 0,
"BotEasy": 0,
"BotNormal": 0,
"BotHard": 0,
"BotImpossible": 0,
"BotAssault": 0,
"BotMarksman": 0,
"DisabledScavExits": "",
"AccessKeys": [],
"UnixDateTime": 1600869802,
"users_gather_seconds": 0,
"users_spawn_seconds_n": 0,
"users_spawn_seconds_n2": 0,
"users_summon_seconds": 0,
"sav_summon_seconds": 0,
"matching_min_seconds": 0,
"MinMaxBots": [],
"BotLocationModifier": {
"AccuracySpeed": 1,
"Scattering": 1,
"GainSight": 1,
"MarksmanAccuratyCoef": 1,
"VisibleDistance": 1,
"DistToSleep": 100,
"DistToActivate": 80,
"MagnetPower": 10
},
"exits": [
{
"Name": "UN Roadblock",
"EntryPoints": "House,Houseb",
"Chance": 100,
"MinTime": 0,
"MaxTime": 0,
"PlayersCount": 0,
"ExfiltrationTime": 10,
"PassageRequirement": "TransferItem",
"ExfiltrationType": "SharedTimer",
"RequiredSlot": "FirstPrimaryWeapon",
"Id": "5449016a4bdc2d6f028b456f",
"RequirementTip": "Сотку должен",
"Count": 100
},
{
"Name": "Elevator",
"EntryPoints": "House,Houseb",
"Chance": 100,
"MinTime": 0,
"MaxTime": 0,
"PlayersCount": 3,
"ExfiltrationTime": 10,
"PassageRequirement": "None",
"ExfiltrationType": "Individual",
"RequiredSlot": "FirstPrimaryWeapon",
"Id": "",
"RequirementTip": "",
"Count": 0
},
{
"Name": "Outskirts",
"EntryPoints": "House,Houseb",
"Chance": 100,
"MinTime": 0,
"MaxTime": 0,
"PlayersCount": 0,
"ExfiltrationTime": 10,
"PassageRequirement": "None",
"ExfiltrationType": "Individual",
"RequiredSlot": "FirstPrimaryWeapon",
"Id": "",
"RequirementTip": "",
"Count": 0
},
{
"Name": "Hangar Gate",
"EntryPoints": "House,Houseb",
"Chance": 100,
"MinTime": 0,
"MaxTime": 0,
"PlayersCount": 0,
"ExfiltrationTime": 10,
"PassageRequirement": "None",
"ExfiltrationType": "Individual",
"RequiredSlot": "FirstPrimaryWeapon",
"Id": "",
"RequirementTip": "",
"Count": 0
},
{
"Name": "Tunnel",
"EntryPoints": "House,Houseb",
"Chance": 100,
"MinTime": 0,
"MaxTime": 0,
"PlayersCount": 0,
"ExfiltrationTime": 10,
"PassageRequirement": "None",
"ExfiltrationType": "Individual",
"RequiredSlot": "FirstPrimaryWeapon",
"Id": "",
"RequirementTip": "",
"Count": 0
},
{
"Name": "EXFIL_Train",
"EntryPoints": "House,Houseb",
"Chance": 100,
"MinTime": 30,
"MaxTime": 60,
"PlayersCount": 0,
"ExfiltrationTime": 5,
"PassageRequirement": "Train",
"ExfiltrationType": "SharedTimer",
"RequiredSlot": "FirstPrimaryWeapon",
"Id": "0",
"RequirementTip": "TIP IS HARDCODED",
"Count": 90
}
],
"DisabledForScav": false,
"BossLocationSpawn": [],
"SpawnPointParams": [
{
"Id": "03841924-ea1a-4e5c-bf27-82af7868beb1",
"Position": {
"x": -30.359436,
"y": 0.1,
"z": -6.39318848
},
"Rotation": 87.10709,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "House",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "0da5b986-424a-44d1-906a-1d7cc118413a",
"Position": {
"x": 19.715271,
"y": 0.06,
"z": 5.14703369
},
"Rotation": 269.253418,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "Houseb",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "110e3c75-e58d-461c-ab61-9f6a715ca6b1",
"Position": {
"x": -30.0410156,
"y": 0.1,
"z": -1.40075684
},
"Rotation": 87.10709,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "House",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "1a40138b-6f65-4866-bad2-64162d7772de",
"Position": {
"x": -29.2000122,
"y": 0.1,
"z": 5.14001465
},
"Rotation": 87.10709,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "House",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "3feb492c-8c45-405a-8e7a-8dd903433eb0",
"Position": {
"x": -23.7852783,
"y": 0.1,
"z": -2.34625244
},
"Rotation": 87.10709,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "House",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "52d3284b-0e8f-47e8-a7d1-701bf4cd8e5b",
"Position": {
"x": -23.4979248,
"y": 0.1,
"z": 3.856079
},
"Rotation": 87.10709,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "House",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "870629fd-e4d5-4fa1-8274-94c223ad9692",
"Position": {
"x": 12.9941406,
"y": 0.06,
"z": 1.34918213
},
"Rotation": 269.253418,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "Houseb",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "93a1c6d6-1379-43e6-99c2-c346178bb3e0",
"Position": {
"x": 18.1246338,
"y": 0.06,
"z": -6.334656
},
"Rotation": 269.253418,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "Houseb",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "971882ef-596f-4419-acfb-ca2bfe52d043",
"Position": {
"x": -17.92,
"y": 0,
"z": 5.55
},
"Rotation": 0,
"Sides": [
"Savage"
],
"Categories": [
"Bot"
],
"Infiltration": "",
"DelayToCanSpawnSec": 10,
"ColliderParams": {
"_parent": "SpawnSphereParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Radius": 4
}
},
"BotZoneName": "BotZoneMain"
},
{
"Id": "cf24125e-1c3a-457e-a024-613a8df98b06",
"Position": {
"x": 12.47467,
"y": 0.06,
"z": -4.838135
},
"Rotation": 269.253418,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "Houseb",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
},
{
"Id": "d052b031-b477-465f-8913-ae108c9ca2c3",
"Position": {
"x": 19.210022,
"y": 0.06,
"z": 0.16998291
},
"Rotation": 269.253418,
"Sides": [
"Bear"
],
"Categories": [
"Player"
],
"Infiltration": "Houseb",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnBoxParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Size": {
"x": 2.2,
"y": 2.04,
"z": 2.14
}
}
},
"BotZoneName": ""
}
],
"maxItemCountInLocation": [],
"Id": "develop",
"_Id": "56db0b3bd2720bb0678b4567",
"Loot": [],
"Banners": [
{
"id": "5805f617245977100b2c1f41",
"pic": {
"path": "CONTENT/banners/tglabs.jpg",
"rcid": ""
}
},
{
"id": "5807be8924597742c603fa19",
"pic": {
"path": "CONTENT/banners/banner_tarkov.jpg",
"rcid": ""
}
},
{
"id": "5c1b857086f77465f465faa4",
"pic": {
"path": "CONTENT/banners/banner_scavraider.jpg",
"rcid": ""
}
}
]
}

View File

@ -1,186 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Cellars",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate 3",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate 0",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate m",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate_o",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate 3",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Camera Bunker Door",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Office Window",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,559 +0,0 @@
{
"containersGroups": {
"bad_sportN1_2_factory": {
"minContainers": 6,
"maxContainers": 9
},
"MedKitN1_2_factory": {
"minContainers": 3,
"maxContainers": 5
},
"NearWithExit_2_factory": {
"minContainers": 4,
"maxContainers": 7
},
"Basment_scontainer_Weapon_box_01": {
"minContainers": 4,
"maxContainers": 6
},
"CaseN3_factory": {
"minContainers": 1,
"maxContainers": 3
},
"wb_Area_04": {
"minContainers": 3,
"maxContainers": 4
},
"terra_stock": {
"minContainers": 1,
"maxContainers": 2
},
"wb_Administration_office": {
"minContainers": 3,
"maxContainers": 4
},
"wb_Area_02": {
"minContainers": 4,
"maxContainers": 7
},
"wb_Area_01": {
"minContainers": 3,
"maxContainers": 6
},
"wb_Area_03": {
"minContainers": 3,
"maxContainers": 5
},
"ToolkitboxN1_2_factory": {
"minContainers": 7,
"maxContainers": 12
},
"scontainer_ammo_grenade_N14_2_factory": {
"minContainers": 4,
"maxContainers": 6
}
},
"containers": {
"container_City_SW_02_LexOs_blockpost_00024": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00031": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00006": {
"groupId": ""
},
"Lootable_00000": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00130": {
"groupId": ""
},
"Lootable_00002": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00036": {
"groupId": ""
},
"Lootable_00009": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00032": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00029": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00030": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00028": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00027": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00038": {
"groupId": ""
},
"Lootable_00008": {
"groupId": ""
},
"Lootable_00007": {
"groupId": ""
},
"Lootable_00005": {
"groupId": ""
},
"Lootable_00006": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00034": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00033": {
"groupId": ""
},
"container_Factory_Eugene_Temp_00002": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00035": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00106": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00124": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00125": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00122": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00037": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00120": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00119": {
"groupId": ""
},
"container_Test_for_export_00000": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00089": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00108": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00102": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00094": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00040": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00111": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00098": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00073": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00095": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00088": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00091": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00129": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00004": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00092": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00020": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00075": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00018": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00077": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00115": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00087": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00147": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00127": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00126": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00069": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00110": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00128": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00134": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00076": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00090": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00113": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00019": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00105": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00097": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00104": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00086": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00131": {
"groupId": ""
},
"container_ProfileEditor_00002": {
"groupId": ""
},
"Lootable_00004": {
"groupId": ""
},
"container_Factory_Eugene_Temp_00003": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00137": {
"groupId": "terra_stock"
},
"container_Factory_Rework_DesignStuff_00148": {
"groupId": "terra_stock"
},
"container_Factory_Rework_DesignStuff_00039": {
"groupId": ""
},
"00012": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00099": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00100": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00023": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00022": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00114": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00101": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00021": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00109": {
"groupId": "CaseN3_factory"
},
"container_Factory_Rework_DesignStuff_00010": {
"groupId": "CaseN3_factory"
},
"container_Factory_Rework_DesignStuff_00112": {
"groupId": "CaseN3_factory"
},
"container_Factory_Rework_DesignStuff_00135": {
"groupId": "CaseN3_factory"
},
"container_Factory_Rework_Background_00003": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00051": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00080": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00123": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00081": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00013": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00139": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00052": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00060": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00065": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00055": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00045": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00067": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00066": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00070": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00015": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00012": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00138": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00061": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00048": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00146": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00016": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00025": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00044": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00050": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00054": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00096": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_Background_00001": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00121": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00049": {
"groupId": "weapon_box_N3_4_factory"
},
"container_Factory_Rework_DesignStuff_00103": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_Background_00000": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00064": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00046": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00107": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00047": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00132": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"Lootable_00003": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00145": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00053": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00058": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00063": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00043": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00042": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00068": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00143": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00116": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00014": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00079": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00056": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00142": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00011": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00062": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00024": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00026": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00144": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00078": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00117": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00082": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00071": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00118": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00140": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00141": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00059": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00085": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00072": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00084": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00041": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00017": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00009": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00083": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00057": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00093": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00133": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00001": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00005": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00008": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00002": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00074": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00000": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00003": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00007": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00136": {
"groupId": "NearWithExit_2_factory"
}
}
}

View File

@ -1,186 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Cellars",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate 3",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate 0",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate m",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Factory",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate_o",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Gate 3",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Camera Bunker Door",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Office Window",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,559 +0,0 @@
{
"containersGroups": {
"bad_sportN1_2_factory": {
"minContainers": 6,
"maxContainers": 9
},
"MedKitN1_2_factory": {
"minContainers": 3,
"maxContainers": 5
},
"NearWithExit_2_factory": {
"minContainers": 4,
"maxContainers": 7
},
"Basment_scontainer_Weapon_box_01": {
"minContainers": 4,
"maxContainers": 6
},
"CaseN3_factory": {
"minContainers": 1,
"maxContainers": 3
},
"wb_Area_04": {
"minContainers": 3,
"maxContainers": 4
},
"terra_stock": {
"minContainers": 1,
"maxContainers": 2
},
"wb_Administration_office": {
"minContainers": 3,
"maxContainers": 4
},
"wb_Area_02": {
"minContainers": 4,
"maxContainers": 7
},
"wb_Area_01": {
"minContainers": 3,
"maxContainers": 6
},
"wb_Area_03": {
"minContainers": 3,
"maxContainers": 5
},
"ToolkitboxN1_2_factory": {
"minContainers": 7,
"maxContainers": 12
},
"scontainer_ammo_grenade_N14_2_factory": {
"minContainers": 4,
"maxContainers": 6
}
},
"containers": {
"container_City_SW_02_LexOs_blockpost_00024": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00031": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00006": {
"groupId": ""
},
"Lootable_00000": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00130": {
"groupId": ""
},
"Lootable_00002": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00036": {
"groupId": ""
},
"Lootable_00009": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00032": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00029": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00030": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00028": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00027": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00038": {
"groupId": ""
},
"Lootable_00008": {
"groupId": ""
},
"Lootable_00007": {
"groupId": ""
},
"Lootable_00005": {
"groupId": ""
},
"Lootable_00006": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00034": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00033": {
"groupId": ""
},
"container_Factory_Eugene_Temp_00002": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00035": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00106": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00124": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00125": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00122": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00037": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00120": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00119": {
"groupId": ""
},
"container_Test_for_export_00000": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00089": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00108": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00102": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00094": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00040": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00111": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00098": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00073": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00095": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00088": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00091": {
"groupId": "bad_sportN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00129": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00004": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00092": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00020": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00075": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00018": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00077": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00115": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00087": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00147": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00127": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00126": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00069": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00110": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00128": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00134": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00076": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00090": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00113": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00019": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00105": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00097": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00104": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00086": {
"groupId": "ToolkitboxN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00131": {
"groupId": ""
},
"container_ProfileEditor_00002": {
"groupId": ""
},
"Lootable_00004": {
"groupId": ""
},
"container_Factory_Eugene_Temp_00003": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00137": {
"groupId": "terra_stock"
},
"container_Factory_Rework_DesignStuff_00148": {
"groupId": "terra_stock"
},
"container_Factory_Rework_DesignStuff_00039": {
"groupId": ""
},
"00012": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00099": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00100": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00023": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00022": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00114": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00101": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00021": {
"groupId": "MedKitN1_2_factory"
},
"container_Factory_Rework_DesignStuff_00109": {
"groupId": "CaseN3_factory"
},
"container_Factory_Rework_DesignStuff_00010": {
"groupId": "CaseN3_factory"
},
"container_Factory_Rework_DesignStuff_00112": {
"groupId": "CaseN3_factory"
},
"container_Factory_Rework_DesignStuff_00135": {
"groupId": "CaseN3_factory"
},
"container_Factory_Rework_Background_00003": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00051": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00080": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00123": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00081": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00013": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00139": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00052": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00060": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00065": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00055": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00045": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00067": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00066": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00070": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00015": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00012": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00138": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00061": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00048": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00146": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00016": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00025": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00044": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00050": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00054": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00096": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_Background_00001": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00121": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00049": {
"groupId": "weapon_box_N3_4_factory"
},
"container_Factory_Rework_DesignStuff_00103": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_Background_00000": {
"groupId": ""
},
"container_Factory_Rework_DesignStuff_00064": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00046": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00107": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00047": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00132": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"Lootable_00003": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00145": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00053": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00058": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00063": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00043": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00042": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00068": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00143": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00116": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00014": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00079": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00056": {
"groupId": "wb_Administration_office"
},
"container_Factory_Rework_DesignStuff_00142": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00011": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00062": {
"groupId": "wb_Area_02"
},
"container_Factory_Rework_DesignStuff_00024": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00026": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00144": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00078": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00117": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00082": {
"groupId": "wb_Area_01"
},
"container_Factory_Rework_DesignStuff_00071": {
"groupId": "wb_Area_04"
},
"container_Factory_Rework_DesignStuff_00118": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00140": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00141": {
"groupId": "Basment_scontainer_Weapon_box_01"
},
"container_Factory_Rework_DesignStuff_00059": {
"groupId": "wb_Area_03"
},
"container_Factory_Rework_DesignStuff_00085": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00072": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00084": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00041": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00017": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00009": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00083": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00057": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00093": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00133": {
"groupId": "scontainer_ammo_grenade_N14_2_factory"
},
"container_Factory_Rework_DesignStuff_00001": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00005": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00008": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00002": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00074": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00000": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00003": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00007": {
"groupId": "NearWithExit_2_factory"
},
"container_Factory_Rework_DesignStuff_00136": {
"groupId": "NearWithExit_2_factory"
}
}
}

View File

@ -1,173 +0,0 @@
{
"Enabled": false,
"EnableCoop": true,
"Locked": true,
"Name": "Hideout",
"Scene": {
"path": "maps/bunker_preset.bundle",
"rcid": "bunker.ScenesPreset.asset"
},
"Area": 0,
"RequiredPlayerLevelMin": 1,
"RequiredPlayerLevelMax": 100,
"PmcMaxPlayersInGroup": 5,
"ScavMaxPlayersInGroup": 4,
"MinPlayers": 1,
"MaxPlayers": 10,
"MaxCoopGroup": 10,
"IconX": 0,
"IconY": 0,
"waves": [],
"limits": [],
"AveragePlayTime": 1000000,
"AveragePlayerLevel": 10,
"EscapeTimeLimit": 99999,
"EscapeTimeLimitCoop": 99999,
"Rules": "Normal",
"IsSecret": false,
"doors": [],
"MaxDistToFreePoint": 900,
"MinDistToFreePoint": 10,
"MaxBotPerZone": 0,
"OpenZones": "",
"OcculsionCullingEnabled": false,
"OldSpawn": true,
"OfflineOldSpawn": true,
"NewSpawn": false,
"OfflineNewSpawn": true,
"BotMax": 0,
"BotStart": 0,
"BotStartPlayer": 0,
"BotStop": 0,
"BotSpawnTimeOnMin": 0,
"BotSpawnTimeOnMax": 0,
"BotSpawnTimeOffMin": 0,
"BotSpawnTimeOffMax": 0,
"BotEasy": 0,
"BotNormal": 0,
"BotHard": 0,
"BotImpossible": 0,
"BotAssault": 0,
"BotMarksman": 0,
"DisabledScavExits": "",
"MinPlayerLvlAccessKeys": 0,
"AccessKeys": [],
"UnixDateTime": 1689772567,
"PlayersRequestCount": -1,
"NonWaveGroupScenario": {
"MinToBeGroup": 2,
"MaxToBeGroup": 3,
"Chance": 50,
"Enabled": false
},
"BotSpawnCountStep": 3,
"BotSpawnPeriodCheck": 15,
"GlobalContainerChanceModifier": 1,
"MinMaxBots": [],
"BotLocationModifier": {
"AccuracySpeed": 1,
"Scattering": 1,
"GainSight": 1,
"MarksmanAccuratyCoef": 1,
"VisibleDistance": 0
},
"exits": [],
"DisabledForScav": false,
"SpawnPointParams": [{
"Id": "f656a561-6524-49e2-90c0-1cbbece183ce",
"Position": {
"x": -5.8,
"y": 0.1,
"z": -5.4
},
"Rotation": 45.0000038,
"Sides": ["Usec"],
"Categories": ["Player", "Bot"],
"Infiltration": "",
"DelayToCanSpawnSec": 0.5,
"ColliderParams": {
"_parent": "SpawnSphereParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Radius": 10
}
},
"BotZoneName": ""
}, {
"Id": "f92541a9-08ab-4c9e-957a-d802e143b705",
"Position": {
"x": -5.8,
"y": 0.1,
"z": -5.4
},
"Rotation": 45.0000038,
"Sides": ["All"],
"Categories": ["Player"],
"Infiltration": "Hideout",
"DelayToCanSpawnSec": 4,
"ColliderParams": {
"_parent": "SpawnSphereParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Radius": 10
}
},
"BotZoneName": ""
}, {
"Id": "faf351a1-e5f5-4642-8ece-267508fdfea6",
"Position": {
"x": -5.8,
"y": 0.1,
"z": -5.4
},
"Rotation": 45.0000038,
"Sides": ["Bear"],
"Categories": ["Player", "Bot"],
"Infiltration": "",
"DelayToCanSpawnSec": 0.5,
"ColliderParams": {
"_parent": "SpawnSphereParams",
"_props": {
"Center": {
"x": 0,
"y": 0,
"z": 0
},
"Radius": 10
}
},
"BotZoneName": ""
}
],
"maxItemCountInLocation": [{
"TemplateId": "604b47caa16c2359315ad047",
"Value": 0
}
],
"Id": "hideout",
"_Id": "599319c986f7740dca3070a6",
"Loot": [],
"Banners": [{
"id": "5805f617245977100b2c1f41",
"pic": {
"path": "CONTENT/banners/tglabs.jpg",
"rcid": ""
}
}, {
"id": "5807be8924597742c603fa19",
"pic": {
"path": "CONTENT/banners/banner_tarkov.jpg",
"rcid": ""
}
}
],
"BossLocationSpawn": []
}

View File

@ -1,186 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "MallNW",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "SE Exfil",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "MallSE",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "NW Exfil",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 50.0,
"ChancePVE": 50.0,
"Count": 5000,
"CountPve": 0,
"EntryPoints": "MallSE,MallNW",
"EventAvailable": false,
"ExfiltrationTime": 60.0,
"ExfiltrationTimePVE": 60.0,
"ExfiltrationType": "SharedTimer",
"Id": "5449016a4bdc2d6f028b456f",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "PP Exfil",
"PassageRequirement": "TransferItem",
"PlayersCount": 4,
"PlayersCountPVE": 4,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Item",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "MallSE,MallNW",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "SharedTimer",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Interchange Cooperation",
"PassageRequirement": "ScavCooperation",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Cooperate",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "MallSE,MallNW",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Hole Exfill",
"PassageRequirement": "Empty",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "Backpack",
"RequirementTip": "EXFIL_INTERCHANGE_HOLE_TIP",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "MallSE,MallNW",
"EventAvailable": false,
"ExfiltrationTime": 3.0,
"ExfiltrationTimePVE": 3.0,
"ExfiltrationType": "Manual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Saferoom Exfil",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_INTERCHANGE_SAFEROOM_TIP",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "SE Exfil",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "NW Exfil",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,232 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Manual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Elevator_Cargo",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 5.0,
"ExfiltrationTimePVE": 5.0,
"ExfiltrationType": "Manual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Elevator_Main",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 15.0,
"ExfiltrationTimePVE": 15.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Vent",
"PassageRequirement": "Empty",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "Backpack",
"RequirementTip": "EXFIL_tip_backpack",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 5.0,
"ExfiltrationTimePVE": 5.0,
"ExfiltrationType": "Manual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Elevator_Med",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Under_Storage_Collector",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 60.0,
"ChancePVE": 60.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Parking_Gate",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 60.0,
"ChancePVE": 60.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Hangar_Gate",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 0.0,
"ChancePVE": 0.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Elevator_Cargo",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 0.0,
"ChancePVE": 0.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Elevator_Main",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 0.0,
"ChancePVE": 0.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "lab_Elevator_Med",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,979 +0,0 @@
{
"containersGroups": {
"tool&others_crate_outdoors": {
"minContainers": 21,
"maxContainers": 22
},
"weapon_crate_closed": {
"minContainers": 20,
"maxContainers": 25
},
"weapon_crate_outdoors": {
"minContainers": 25,
"maxContainers": 27
},
"outdoors_bags": {
"minContainers": 26,
"maxContainers": 28
}
},
"containers": {
"container_Laboratory_DesignStuff_00137": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00136": {
"groupId": ""
},
"Lootable_00002": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00133": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00129": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00130": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00132": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00131": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00127": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00128": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00126": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00125": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00092": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00091": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00093": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00094": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00135": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00069": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00070": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00068": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00067": {
"groupId": ""
},
"Lootable_00001": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00085": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00086": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00084": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00083": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00074": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00073": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00071": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00072": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00134": {
"groupId": ""
},
"Lootable_00000": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00076": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00075": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00077": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00078": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00121": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00122": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00124": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00123": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00081": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00082": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00080": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00079": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00138": {
"groupId": ""
},
"Lootable_00007": {
"groupId": ""
},
"Lootable_00008": {
"groupId": ""
},
"Lootable_00006": {
"groupId": ""
},
"Lootable_00005": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00097": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00098": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00096": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00095": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00087": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00088": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00090": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00089": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00016": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00055": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00006": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00053": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00029": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00022": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00036": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00046": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00050": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00004": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00018": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00002": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00008": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00066": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00000": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00054": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00037": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00047": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00065": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00041": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00064": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00010": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00023": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00014": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00034": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00001": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00038": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00052": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00040": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00031": {
"groupId": "outdoors_bags"
},
"container_Test_for_export_00000": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00021": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00030": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00062": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00007": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00024": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00057": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00059": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00061": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00048": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00003": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00056": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00063": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00058": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00049": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00013": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00026": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00032": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00019": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00043": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00039": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00017": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00060": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00012": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00051": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00027": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00005": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00025": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00045": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00009": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00035": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00033": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00028": {
"groupId": "outdoors_bags"
},
"Lootable_00011": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00015": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00042": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00011": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00020": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00044": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00291": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00284": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00289": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00283": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00287": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00288": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00286": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00290": {
"groupId": "outdoors_bags"
},
"container_Laboratory_DesignStuff_00281": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00285": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00280": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00118": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00232": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00120": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00233": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00207": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00108": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00206": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00278": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00119": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00277": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00109": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00295": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00292": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00294": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00293": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00301": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00236": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00264": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00258": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00260": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00261": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00252": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00262": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00250": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00247": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00268": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00269": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00267": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00249": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00256": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00270": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00242": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00237": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00240": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00253": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00271": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00265": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_Medical_corridor_floor_1_00001": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00239": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00255": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00251": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00263": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00243": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00248": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00241": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00235": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00254": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00246": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00245": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00259": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00266": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00244": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00272": {
"groupId": "tool&others_crate_outdoors"
},
"container_ProfileEditor_00002": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00276": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00274": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00275": {
"groupId": ""
},
"Lootable_00004": {
"groupId": ""
},
"container_Test_for_export_00001": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00273": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00107": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00231": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00117": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00205": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00201": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00116": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00226": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00106": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00225": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00200": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00115": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00105": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00224": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00227": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00198": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00199": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00173": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00146": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00174": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00164": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00167": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00178": {
"groupId": ""
},
"Lootable_00065": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00156": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00153": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00170": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00168": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00159": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00166": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00179": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00172": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00154": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00139": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00152": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00177": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00180": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00143": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00162": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00149": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00144": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00147": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00141": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00175": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00163": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00161": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00169": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00148": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00165": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00150": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00181": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00176": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00160": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00142": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00151": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00171": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00145": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00155": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00158": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00140": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00157": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00238": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00234": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00257": {
"groupId": "tool&others_crate_outdoors"
},
"container_Laboratory_DesignStuff_00208": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00202": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00230": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00203": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00228": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00204": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00229": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00104": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00102": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00113": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00114": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00103": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00099": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00101": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00215": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00214": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00190": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00183": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00100": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00210": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00211": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00186": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00187": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00213": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00184": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00216": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00185": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00112": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00111": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00188": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00209": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00110": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00189": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00182": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00212": {
"groupId": "weapon_crate_outdoors"
},
"container_Test_for_export_00002": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00197": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00221": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00222": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00193": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00223": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00191": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00192": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00219": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00196": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00220": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00218": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00217": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00194": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00195": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_Medical_corridor_floor_1_00000": {
"groupId": ""
},
"container_Laboratory_DesignStuff_00282": {
"groupId": "weapon_crate_outdoors"
},
"container_Laboratory_DesignStuff_00297": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00299": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00303": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00298": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00302": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00300": {
"groupId": "weapon_crate_closed"
},
"container_Laboratory_DesignStuff_00296": {
"groupId": "weapon_crate_closed"
}
}
}

View File

@ -1,278 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 400,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 5.0,
"ExfiltrationTimePVE": 5.0,
"ExfiltrationType": "SharedTimer",
"Id": "0",
"MinTime": 1200.0,
"MinTimePVE": 1200.0,
"MaxTime": 1500.0,
"MaxTimePVE": 1500.0,
"Name": "EXFIL_Train",
"PassageRequirement": "Train",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "TIP IS HARDCODED",
"Side": "Coop"
},
{
"Chance": 50.0,
"ChancePVE": 50.0,
"Count": 5000,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 60.0,
"ExfiltrationTimePVE": 60.0,
"ExfiltrationType": "SharedTimer",
"Id": "5449016a4bdc2d6f028b456f",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": " V-Ex_light",
"PassageRequirement": "TransferItem",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Item",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "SharedTimer",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "tunnel_shared",
"PassageRequirement": "ScavCooperation",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Cooperate",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "Alpinist",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Alpinist_light",
"PassageRequirement": "Reference",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Shorl_free",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Nothern_Checkpoint",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Coastal_South_Road",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Shorl_free_scav",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Scav_Coastal_South",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Scav_Underboat_Hideout",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Scav_Hideout_at_the_grotto",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Tunnel,North",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Scav_Industrial_zone",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,125 +0,0 @@
{
"Enabled": false,
"Locked": true,
"Insurance": true,
"SafeLocation": false,
"Name": "Private Sector",
"Description": "Private residential sector, built up with cottages of the upper-class citizens of Tarkov. In the first weeks of emerging chaos it served as a refugee staging camp, but has become a known scavenger haunt afterwards.",
"Scene": {
"path": "",
"rcid": ""
},
"Area": 0,
"RequiredPlayerLevel": 0,
"MinPlayers": 6,
"MaxPlayers": 9,
"exit_count": 1,
"exit_access_time": 10,
"exit_time": 2,
"Preview": {
"path": "",
"rcid": ""
},
"IconX": 224,
"IconY": 646,
"filter_ex": [],
"waves": [
{
"number": 0,
"time_min": 1,
"time_max": 2,
"slots_min": 3,
"slots_max": 6,
"SpawnPoints": "",
"BotSide": "Savage",
"BotPreset": "normal",
"isPlayers": false,
"WildSpawnType": "assault"
},
{
"number": 1,
"time_min": 10,
"time_max": 12,
"slots_min": 3,
"slots_max": 5,
"SpawnPoints": "",
"BotSide": "Usec",
"BotPreset": "hard",
"isPlayers": false,
"WildSpawnType": "assault"
}
],
"limits": [],
"AveragePlayTime": 100,
"AveragePlayerLevel": 10,
"escape_time_limit": 0,
"Rules": "Normal",
"IsSecret": true,
"doors": [],
"tmp_location_field_remove_me": 0,
"MinDistToExitPoint": 30,
"MaxDistToFreePoint": 900,
"MinDistToFreePoint": 10,
"MaxBotPerZone": 0,
"OpenZones": "",
"OcculsionCullingEnabled": false,
"GlobalLootChanceModifier": 1,
"OldSpawn": true,
"NewSpawn": false,
"BotMax": 0,
"BotStart": 0,
"BotStop": 0,
"BotMaxTimePlayer": 0,
"BotSpawnTimeOnMin": 0,
"BotSpawnTimeOnMax": 0,
"BotSpawnTimeOffMin": 0,
"BotSpawnTimeOffMax": 0,
"BotMaxPlayer": 0,
"BotEasy": 0,
"BotNormal": 0,
"BotHard": 0,
"BotImpossible": 0,
"BotAssault": 0,
"BotMarksman": 0,
"DisabledScavExits": "",
"AccessKeys": [],
"UnixDateTime": 0,
"users_gather_seconds": 120,
"users_spawn_seconds_n": 60,
"users_spawn_seconds_n2": 90,
"users_summon_seconds": 0,
"sav_summon_seconds": 60,
"matching_min_seconds": 120,
"MinMaxBots": [],
"BotLocationModifier": {
"AccuracySpeed": 0,
"Scattering": 0,
"GainSight": 0,
"MarksmanAccuratyCoef": 0,
"VisibleDistance": 0
},
"exits": [],
"DisabledForScav": false,
"SpawnPointParams": [],
"maxItemCountInLocation": [],
"Id": "Private Area",
"_Id": "5704e64ad2720bb55b8b456e",
"Loot": [],
"Banners": [
{
"id": "5803a58524597710ca36fcb2",
"pic": {
"path": "CONTENT/banners/banner_terragroup.jpg",
"rcid": ""
}
},
{
"id": "5c1b857086f77465f465faa4",
"pic": {
"path": "CONTENT/banners/banner_scavraider.jpg",
"rcid": ""
}
}
],
"BossLocationSpawn": []
}

View File

@ -1,232 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 400,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 5.0,
"ExfiltrationTimePVE": 5.0,
"ExfiltrationType": "SharedTimer",
"Id": "0",
"MinTime": 1450.0,
"MinTimePVE": 1450.0,
"MaxTime": 1700.0,
"MaxTimePVE": 1700.0,
"Name": "EXFIL_Train",
"PassageRequirement": "Train",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "TIP IS HARDCODED",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "EXFIL_Bunker_D2",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 18.0,
"ExfiltrationTimePVE": 18.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "EXFIL_Bunker",
"PassageRequirement": "WorldEvent",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_BUNKER_POWER",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "Alpinist",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Alpinist",
"PassageRequirement": "Reference",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "SharedTimer",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "EXFIL_ScavCooperation",
"PassageRequirement": "ScavCooperation",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Cooperate",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Common",
"EventAvailable": false,
"ExfiltrationTime": 10.0,
"ExfiltrationTimePVE": 10.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "EXFIL_vent",
"PassageRequirement": "Empty",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "Backpack",
"RequirementTip": "EXFIL_tip_backpack",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Exit1",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Exit2",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Exit3",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Exit4",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,163 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 5000,
"CountPve": 0,
"EntryPoints": "west,east",
"EventAvailable": false,
"ExfiltrationTime": 60.0,
"ExfiltrationTimePVE": 60.0,
"ExfiltrationType": "SharedTimer",
"Id": "5449016a4bdc2d6f028b456f",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Sandbox_VExit",
"PassageRequirement": "TransferItem",
"PlayersCount": 4,
"PlayersCountPVE": 4,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Item",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "east",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Unity_free_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "west,east",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "SharedTimer",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Scav_coop_exit",
"PassageRequirement": "ScavCooperation",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Cooperate",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "west",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Nakatani_stairs_free_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "west,east",
"EventAvailable": false,
"ExfiltrationTime": 6.0,
"ExfiltrationTimePVE": 6.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Sniper_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "east",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Unity_free_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "west",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Nakatani_stairs_free_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,163 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 5000,
"CountPve": 0,
"EntryPoints": "west,east",
"EventAvailable": false,
"ExfiltrationTime": 60.0,
"ExfiltrationTimePVE": 60.0,
"ExfiltrationType": "SharedTimer",
"Id": "5449016a4bdc2d6f028b456f",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Sandbox_VExit",
"PassageRequirement": "TransferItem",
"PlayersCount": 4,
"PlayersCountPVE": 4,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Item",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "east",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Unity_free_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "west,east",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "SharedTimer",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Scav_coop_exit",
"PassageRequirement": "ScavCooperation",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Cooperate",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "west",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Nakatani_stairs_free_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "west,east",
"EventAvailable": false,
"ExfiltrationTime": 6.0,
"ExfiltrationTimePVE": 6.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Sniper_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "east",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Unity_free_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "west",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Nakatani_stairs_free_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,324 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 5000,
"CountPve": 0,
"EntryPoints": "Riverside,Village",
"EventAvailable": false,
"ExfiltrationTime": 60.0,
"ExfiltrationTimePVE": 60.0,
"ExfiltrationType": "SharedTimer",
"Id": "5449016a4bdc2d6f028b456f",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Shorl_V-Ex",
"PassageRequirement": "TransferItem",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Item",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Village",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Road to Customs",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Village",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Road_at_railbridge",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Riverside",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Tunnel",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Riverside,Village",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Lighthouse_pass",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Riverside,Village",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "SharedTimer",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Smugglers_Trail_coop",
"PassageRequirement": "ScavCooperation",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Cooperate",
"Side": "Coop"
},
{
"Chance": 50.0,
"ChancePVE": 50.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Riverside,Village",
"EventAvailable": false,
"ExfiltrationTime": 30.0,
"ExfiltrationTimePVE": 30.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Pier Boat",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Riverside,Village",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "Alpinist",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "RedRebel_alp",
"PassageRequirement": "Reference",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Scav Road to Customs",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Lighthouse",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Wrecked Road",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "South Fence Passage",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "RWing Gym Entrance",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Adm Basement",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,119 +0,0 @@
{
"Enabled": false,
"Locked": true,
"Insurance": false,
"SafeLocation": false,
"Name": "Suburbs",
"Scene": {
"path": "",
"rcid": ""
},
"Area": 0,
"RequiredPlayerLevel": 0,
"MinPlayers": 6,
"MaxPlayers": 9,
"exit_count": 0,
"exit_access_time": 0,
"exit_time": 0,
"IconX": 480,
"IconY": 577,
"waves": [
{
"number": 0,
"time_min": 1,
"time_max": 2,
"slots_min": 3,
"slots_max": 6,
"SpawnPoints": "",
"BotSide": "Savage",
"BotPreset": "normal",
"isPlayers": false,
"WildSpawnType": "assault"
},
{
"number": 1,
"time_min": 10,
"time_max": 12,
"slots_min": 3,
"slots_max": 5,
"SpawnPoints": "",
"BotSide": "Usec",
"BotPreset": "easy",
"isPlayers": false,
"WildSpawnType": "assault"
}
],
"limits": [],
"AveragePlayTime": 100,
"AveragePlayerLevel": 10,
"escape_time_limit": 0,
"Rules": "Normal",
"IsSecret": false,
"doors": [],
"tmp_location_field_remove_me": 0,
"MinDistToExitPoint": 0,
"MaxDistToFreePoint": 900,
"MinDistToFreePoint": 10,
"MaxBotPerZone": 0,
"OpenZones": "",
"OcculsionCullingEnabled": false,
"GlobalLootChanceModifier": 0,
"OldSpawn": true,
"NewSpawn": false,
"BotMax": 0,
"BotStart": 0,
"BotStop": 0,
"BotMaxTimePlayer": 0,
"BotSpawnTimeOnMin": 0,
"BotSpawnTimeOnMax": 0,
"BotSpawnTimeOffMin": 0,
"BotSpawnTimeOffMax": 0,
"BotMaxPlayer": 0,
"BotEasy": 0,
"BotNormal": 0,
"BotHard": 0,
"BotImpossible": 0,
"BotAssault": 0,
"BotMarksman": 0,
"DisabledScavExits": "",
"AccessKeys": [],
"UnixDateTime": 0,
"users_gather_seconds": 0,
"users_spawn_seconds_n": 0,
"users_spawn_seconds_n2": 0,
"users_summon_seconds": 0,
"sav_summon_seconds": 0,
"matching_min_seconds": 0,
"MinMaxBots": [],
"BotLocationModifier": {
"AccuracySpeed": 0,
"Scattering": 0,
"GainSight": 0,
"MarksmanAccuratyCoef": 0,
"VisibleDistance": 0
},
"exits": [],
"DisabledForScav": false,
"BossLocationSpawn": [],
"SpawnPointParams": [],
"maxItemCountInLocation": [],
"Id": "Suburbs",
"_Id": "5714dc342459777137212e0b",
"Loot": [],
"Banners": [
{
"id": "5807be8924597742c603fa19",
"pic": {
"path": "CONTENT/banners/banner_tarkov.jpg",
"rcid": ""
}
},
{
"id": "5c1b857086f77465f465faa4",
"pic": {
"path": "CONTENT/banners/banner_scavraider.jpg",
"rcid": ""
}
}
]
}

View File

@ -1,423 +0,0 @@
[
{
"Chance": 40.0,
"ChancePVE": 40.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E8_yard",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 50.0,
"ChancePVE": 50.0,
"Count": 5000,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 60.0,
"ExfiltrationTimePVE": 60.0,
"ExfiltrationType": "SharedTimer",
"Id": "5449016a4bdc2d6f028b456f",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E7_car",
"PassageRequirement": "TransferItem",
"PlayersCount": 4,
"PlayersCountPVE": 4,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Item",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E6_1,E1_2",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E1",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E4_5,E3_4",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E4",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E2_3,E1_2",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E2",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E2_3,E3_4",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E3",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E4_5,E5_6",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E5",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 0.0,
"ChancePVE": 0.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E6_1,E5_6",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E6",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 6.0,
"ExfiltrationTimePVE": 6.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E9_sniper",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "SharedTimer",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Exit_E10_coop",
"PassageRequirement": "ScavCooperation",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Cooperate",
"Side": "Coop"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E6_1,E5_6",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "E7",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "scav_e1",
"_Name": "Basement Descent",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "scav_e2",
"_Name": "Entrance to Catacombs",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "scav_e3",
"_Name": "Ventilation Shaft",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "scav_e4",
"_Name": "Sewer Manhole",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "scav_e5",
"_Name": "Near Kamchatskaya Arch",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "scav_e7",
"_name": "Cardinal Apartment Complex Parking",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "scav_e8",
"_name": "Klimov Shopping Mall Exfil",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,126 +0,0 @@
{
"Enabled": true,
"Locked": true,
"Insurance": false,
"SafeLocation": false,
"Name": "Terminal",
"Scene": {
"path": "",
"rcid": ""
},
"Area": 0,
"RequiredPlayerLevel": 0,
"MinPlayers": 6,
"MaxPlayers": 9,
"exit_count": 0,
"exit_access_time": 0,
"exit_time": 0,
"IconX": 280,
"IconY": 160,
"waves": [
{
"number": 0,
"time_min": 1,
"time_max": 2,
"slots_min": 3,
"slots_max": 6,
"SpawnPoints": "",
"BotSide": "Savage",
"BotPreset": "easy",
"isPlayers": false,
"WildSpawnType": "assault"
},
{
"number": 1,
"time_min": 10,
"time_max": 12,
"slots_min": 3,
"slots_max": 5,
"SpawnPoints": "",
"BotSide": "Savage",
"BotPreset": "easy",
"isPlayers": false,
"WildSpawnType": "assault"
}
],
"limits": [],
"AveragePlayTime": 100,
"AveragePlayerLevel": 10,
"escape_time_limit": 0,
"Rules": "Normal",
"IsSecret": false,
"doors": [],
"tmp_location_field_remove_me": 0,
"MinDistToExitPoint": 0,
"MaxDistToFreePoint": 900,
"MinDistToFreePoint": 10,
"MaxBotPerZone": 0,
"OpenZones": "",
"OcculsionCullingEnabled": false,
"GlobalLootChanceModifier": 0,
"OldSpawn": true,
"NewSpawn": false,
"BotMax": 0,
"BotStart": 0,
"BotStop": 0,
"BotMaxTimePlayer": 0,
"BotSpawnTimeOnMin": 0,
"BotSpawnTimeOnMax": 0,
"BotSpawnTimeOffMin": 0,
"BotSpawnTimeOffMax": 0,
"BotMaxPlayer": 0,
"BotEasy": 0,
"BotNormal": 0,
"BotHard": 0,
"BotImpossible": 0,
"BotAssault": 0,
"BotMarksman": 0,
"DisabledScavExits": "",
"AccessKeys": [],
"UnixDateTime": 0,
"users_gather_seconds": 0,
"users_spawn_seconds_n": 0,
"users_spawn_seconds_n2": 0,
"users_summon_seconds": 0,
"sav_summon_seconds": 0,
"matching_min_seconds": 0,
"MinMaxBots": [],
"BotLocationModifier": {
"AccuracySpeed": 0,
"Scattering": 0,
"GainSight": 0,
"MarksmanAccuratyCoef": 0,
"VisibleDistance": 0
},
"exits": [],
"DisabledForScav": false,
"BossLocationSpawn": [],
"SpawnPointParams": [],
"maxItemCountInLocation": [],
"Id": "Terminal",
"_Id": "5704e5a4d2720bb45b8b4567",
"Loot": [],
"Banners": [
{
"id": "5464e0404bdc2d2a708b4567",
"pic": {
"path": "CONTENT/banners/banner_usec.jpg",
"rcid": ""
}
},
{
"id": "5c1b857086f77465f465faa4",
"pic": {
"path": "CONTENT/banners/banner_scavraider.jpg",
"rcid": ""
}
},
{
"id": "5464c4344bdc2d98698b4567",
"pic": {
"path": "CONTENT/banners/banner_hotkeys_1.png",
"rcid": "RCID_hotkeys_1"
}
}
]
}

View File

@ -1,119 +0,0 @@
{
"Enabled": false,
"Locked": true,
"Insurance": false,
"SafeLocation": false,
"Name": "Town",
"Scene": {
"path": "",
"rcid": ""
},
"Area": 0,
"RequiredPlayerLevel": 0,
"MinPlayers": 6,
"MaxPlayers": 9,
"exit_count": 0,
"exit_access_time": 0,
"exit_time": 0,
"IconX": 72,
"IconY": 413,
"waves": [
{
"number": 0,
"time_min": 1,
"time_max": 2,
"slots_min": 3,
"slots_max": 6,
"SpawnPoints": "",
"BotSide": "Usec",
"BotPreset": "hard",
"WildSpawnType": "assault",
"isPlayers": false
},
{
"number": 1,
"time_min": 10,
"time_max": 12,
"slots_min": 3,
"slots_max": 5,
"SpawnPoints": "",
"BotSide": "Savage",
"BotPreset": "normal",
"WildSpawnType": "assault",
"isPlayers": false
}
],
"limits": [],
"AveragePlayTime": 100,
"AveragePlayerLevel": 10,
"escape_time_limit": 0,
"Rules": "Normal",
"IsSecret": false,
"doors": [],
"tmp_location_field_remove_me": 0,
"MinDistToExitPoint": 0,
"MaxDistToFreePoint": 900,
"MinDistToFreePoint": 10,
"MaxBotPerZone": 0,
"OpenZones": "",
"OcculsionCullingEnabled": false,
"GlobalLootChanceModifier": 0,
"OldSpawn": true,
"NewSpawn": false,
"BotMax": 0,
"BotStart": 0,
"BotStop": 0,
"BotMaxTimePlayer": 0,
"BotSpawnTimeOnMin": 0,
"BotSpawnTimeOnMax": 0,
"BotSpawnTimeOffMin": 0,
"BotSpawnTimeOffMax": 0,
"BotMaxPlayer": 0,
"BotEasy": 0,
"BotNormal": 0,
"BotHard": 0,
"BotImpossible": 0,
"BotAssault": 0,
"BotMarksman": 0,
"DisabledScavExits": "",
"AccessKeys": [],
"UnixDateTime": 0,
"users_gather_seconds": 0,
"users_spawn_seconds_n": 0,
"users_spawn_seconds_n2": 0,
"users_summon_seconds": 0,
"sav_summon_seconds": 0,
"matching_min_seconds": 0,
"MinMaxBots": [],
"BotLocationModifier": {
"AccuracySpeed": 0,
"Scattering": 0,
"GainSight": 0,
"MarksmanAccuratyCoef": 0,
"VisibleDistance": 0
},
"exits": [],
"DisabledForScav": false,
"BossLocationSpawn": [],
"SpawnPointParams": [],
"maxItemCountInLocation": [],
"Id": "Town",
"_Id": "5704e47ed2720bb35b8b4568",
"Loot": [],
"Banners": [
{
"id": "5464e0454bdc2d06708b4567",
"pic": {
"path": "CONTENT/banners/banner_bear.jpg",
"rcid": ""
}
},
{
"id": "5c1b857086f77465f465faa4",
"pic": {
"path": "CONTENT/banners/banner_scavraider.jpg",
"rcid": ""
}
}
]
}

View File

@ -1,462 +0,0 @@
[
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "House,Old Station",
"EventAvailable": false,
"ExfiltrationTime": 20.0,
"ExfiltrationTimePVE": 20.0,
"ExfiltrationType": "SharedTimer",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Factory Gate",
"PassageRequirement": "ScavCooperation",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Cooperate",
"Side": "Coop"
},
{
"Chance": 66.0,
"ChancePVE": 66.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "House",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "RUAF Gate",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 66.0,
"ChancePVE": 66.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "House",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "ZB-016",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 66.0,
"ChancePVE": 66.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Old Station",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "ZB-014",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "House",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "UN Roadblock",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 5000,
"CountPve": 0,
"EntryPoints": "House,Old Station",
"EventAvailable": false,
"ExfiltrationTime": 60.0,
"ExfiltrationTimePVE": 60.0,
"ExfiltrationType": "SharedTimer",
"Id": "5449016a4bdc2d6f028b456f",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "South V-Ex",
"PassageRequirement": "TransferItem",
"PlayersCount": 4,
"PlayersCountPVE": 4,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "EXFIL_Item",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "Old Station",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Outskirts",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "House",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "un-sec",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "House,Old Station",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "wood_sniper_exit",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Pmc"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Outskirts",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Outskirts Water",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Dead Man's Place",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "The Boat",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Scav House",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "East Gate",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Mountain Stash",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "West Border",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "Old Station",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "UN Roadblock",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
},
{
"Chance": 100.0,
"ChancePVE": 100.0,
"Count": 0,
"CountPve": 0,
"EntryPoints": "",
"EventAvailable": false,
"ExfiltrationTime": 8.0,
"ExfiltrationTimePVE": 8.0,
"ExfiltrationType": "Individual",
"Id": "",
"MinTime": 0.0,
"MinTimePVE": 0.0,
"MaxTime": 0.0,
"MaxTimePVE": 0.0,
"Name": "RUAF Roadblock",
"PassageRequirement": "None",
"PlayersCount": 0,
"PlayersCountPVE": 0,
"RequiredSlot": "FirstPrimaryWeapon",
"RequirementTip": "",
"Side": "Scav"
}
]

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,6 @@
import crypto from "node:crypto";
import path from "node:path";
import { path7za } from "7zip-bin";
import pkg from "@yao-pkg/pkg";
import pkgfetch from "@yao-pkg/pkg-fetch";
import fs from "fs-extra";
@ -9,6 +10,7 @@ import download from "gulp-download";
import { exec } from "gulp-execa";
import rename from "gulp-rename";
import minimist from "minimist";
import Seven from "node-7z";
import * as ResEdit from "resedit";
import manifest from "./package.json" assert { type: "json" };
@ -34,6 +36,69 @@ const entries = {
};
const licenseFile = "../LICENSE.md";
/**
* Decompresses the database archives from the assets/compressed/database directory into the assets/database directory.
*/
const decompressArchives = async () => {
const compressedDir = path.resolve("assets", "compressed", "database");
const assetsDir = path.resolve("assets", "database");
// Read the compressed directory and filter out only the 7z files.
let compressedFiles = [];
try {
const files = await fs.readdir(compressedDir);
compressedFiles = files.filter((file) => file.endsWith(".7z"));
} catch (error) {
console.error(`Error reading compressed directory: ${error}`);
return;
}
if (compressedFiles.length === 0) {
console.log("No compressed database archives found.");
return;
}
for (const compressedFile of compressedFiles) {
const compressedFilePath = path.join(compressedDir, compressedFile);
const relativeTargetPath = compressedFile.replace(".7z", "");
const targetDir = path.join(assetsDir, relativeTargetPath);
console.log(`Processing archive: ${compressedFile}`);
// Clean the target directory before extracting the archive.
try {
await fs.remove(targetDir);
console.log(`Cleaned target directory: ${targetDir}`);
} catch (error) {
console.error(`Error cleaning target directory ${targetDir}: ${error}`);
continue;
}
// Extract the archive.
await new Promise((resolve, reject) => {
const stream = Seven.extractFull(compressedFilePath, targetDir, {
$bin: path7za,
overwrite: "a",
});
let hadError = false;
stream.on("end", () => {
if (!hadError) {
console.log(`Successfully decompressed: ${compressedFile}`);
resolve();
}
});
stream.on("error", (err) => {
hadError = true;
console.error(`Error decompressing ${compressedFile}: ${err}`);
reject(err);
});
});
}
};
/**
* Transpile src files into Javascript with SWC
*/
@ -94,7 +159,7 @@ const updateBuildProperties = async () => {
res.entries,
1,
1033,
iconFile.icons.map((item) => item.data),
iconFile.icons.map((item) => item.data)
);
const vi = ResEdit.Resource.VersionInfo.fromEntries(res.entries)[0];
@ -106,7 +171,7 @@ const updateBuildProperties = async () => {
FileDescription: manifest.description,
CompanyName: manifest.name,
LegalCopyright: manifest.license,
},
}
);
vi.removeStringValue({ lang: 1033, codepage: 1200 }, "OriginalFilename");
vi.removeStringValue({ lang: 1033, codepage: 1200 }, "InternalName");
@ -189,7 +254,14 @@ const createHashFile = async () => {
};
// Combine all tasks into addAssets
const addAssets = gulp.series(copyAssets, downloadPnpm, copyLicense, writeBuildDataToJSON, createHashFile);
const addAssets = gulp.series(
decompressArchives,
copyAssets,
downloadPnpm,
copyLicense,
writeBuildDataToJSON,
createHashFile
);
/**
* Cleans the build directory.
@ -327,7 +399,7 @@ gulp.task("build:bleedingmods", build("bleedingmods"));
gulp.task("run:build", async () => await exec(serverExeName, { stdio, cwd: buildDir }));
gulp.task(
"run:debug",
async () => await exec("ts-node-dev -r tsconfig-paths/register src/ide/TestEntry.ts", { stdio }),
async () => await exec("ts-node-dev -r tsconfig-paths/register src/ide/TestEntry.ts", { stdio })
);
gulp.task("run:profiler", async () => {
await cleanCompiled();

View File

@ -11,6 +11,7 @@
"node": "20.11.1"
},
"scripts": {
"postinstall": "node scripts/fix-7za-permissions.js",
"check:circular": "madge --circular --ts-config tsconfig.json --extensions ts ./src/",
"lint": "npx @biomejs/biome lint ./",
"lint:fix": "npx @biomejs/biome lint --write ./",
@ -31,9 +32,12 @@
"gen:types": "tsc -p tsconfig.typedef.json --resolveJsonModule",
"gen:docs": "typedoc --options ./typedoc.json --entryPointStrategy expand ./src",
"gen:items": "ts-node -r tsconfig-paths/register ./src/tools/ItemTplGenerator/ItemTplGeneratorProgram.ts",
"gen:productionquests": "ts-node -r tsconfig-paths/register ./src/tools/ProductionQuestsGen/ProductionQuestsGenProgram.ts"
"gen:productionquests": "ts-node -r tsconfig-paths/register ./src/tools/ProductionQuestsGen/ProductionQuestsGenProgram.ts",
"database:compress": "node scripts/databaseCompress.js",
"database:decompress": "node scripts/databaseDecompress.js"
},
"dependencies": {
"7zip-bin": "^5.2.0",
"atomically": "~1.7",
"buffer-crc32": "~1.0",
"date-fns": "~3.6",
@ -44,6 +48,7 @@
"jsonc": "~2.0",
"logform": "~2.6",
"mongoid-js": "~1.3",
"node-7z": "^3.0.0",
"proper-lockfile": "~4.1",
"reflect-metadata": "~0.2",
"semver": "~7.6",
@ -81,8 +86,7 @@
"resedit": "~2.0",
"ts-node-dev": "~2.0",
"tsconfig-paths": "~4.2",
"typedoc": "~0.26",
"typemoq": "~2.1"
"typedoc": "~0.26"
},
"targets": {
"default": {

View File

@ -0,0 +1,28 @@
// This script compresses the locations database into a 7z archive.
const Seven = require("node-7z");
const path = require("node:path");
const { path7za } = require("7zip-bin");
const archivePath = path.resolve(__dirname, "../assets/compressed/database/locations.7z");
const locationsDir = path.resolve(__dirname, "../assets/database/locations/*.json");
let hadError = false;
const myStream = Seven.add(archivePath, locationsDir, {
recursive: true,
$bin: path7za,
method: ["0=LZMA2"],
compressionLevel: 9,
});
myStream.on("end", () => {
if (!hadError) {
console.log("Compression completed successfully.");
}
});
myStream.on("error", (err) => {
hadError = true;
console.error(`Error compressing locations: ${err}`);
});

View File

@ -0,0 +1,47 @@
// This script removes the contents of the locations directory and then decompresses
// the locations database from a 7z archive.
const Seven = require("node-7z");
const path = require("node:path");
const fs = require("fs-extra");
const { path7za } = require("7zip-bin");
const archivePath = path.resolve(__dirname, "../assets/compressed/database/locations.7z");
const databaseDir = path.resolve(__dirname, "../assets/database/locations");
(async () => {
try {
const archiveExists = await fs.pathExists(archivePath);
if (!archiveExists) {
console.error("Error: Archive file does not exist:", archivePath);
process.exit(1);
}
const locationsDir = path.join(databaseDir, "locations");
if (await fs.pathExists(locationsDir)) {
await fs.remove(locationsDir);
console.log("Existing locations directory removed.");
}
let hadError = false;
const myStream = Seven.extractFull(archivePath, databaseDir, {
$bin: path7za,
overwrite: "a",
});
myStream.on("end", () => {
if (!hadError) {
console.log("Decompression completed successfully.");
}
});
myStream.on("error", (err) => {
hadError = true;
console.error(`Error decompressing locations: ${err}`);
});
} catch (err) {
console.error(`Error during decompression: ${err}`);
process.exit(1);
}
})();

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