feat(ruaf come home, utar go home)
This commit is contained in:
parent
fb69310f35
commit
10849d7ce9
49 changed files with 27689 additions and 0 deletions
BIN
SPT/user/mods/MoreBotsServer/MoreBotsServer.dll
Normal file
BIN
SPT/user/mods/MoreBotsServer/MoreBotsServer.dll
Normal file
Binary file not shown.
4
SPT/user/mods/MoreBotsServer/config.jsonc
Normal file
4
SPT/user/mods/MoreBotsServer/config.jsonc
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"enableDebugLogs": false,
|
||||
"increaseBotCapAmount": 10
|
||||
}
|
||||
BIN
SPT/user/mods/RUAFComeHome/RUAFComeHomeServer.dll
Normal file
BIN
SPT/user/mods/RUAFComeHome/RUAFComeHomeServer.dll
Normal file
Binary file not shown.
182
SPT/user/mods/RUAFComeHome/config.jsonc
Normal file
182
SPT/user/mods/RUAFComeHome/config.jsonc
Normal file
|
|
@ -0,0 +1,182 @@
|
|||
{
|
||||
// Debug settings, don't touch unless you know what you're doing
|
||||
"debug": {
|
||||
// Enable or disable additional debug logs
|
||||
"logs": false,
|
||||
// Force patrols to spawn in every raid (as if patrolChance was 100%)
|
||||
"spawnAlways": false,
|
||||
// Force patrols to always spawn at the start of raids
|
||||
"spawnInstantlyAlways": false
|
||||
},
|
||||
// Settings for changing how patrols and their members are generated
|
||||
"patrols": {
|
||||
// Minimum size a patrol needs to be to have a chance for a second leader
|
||||
"minSecondLeaderSize": 5,
|
||||
// Chance (percentage) for a patrol to have a second leader if it meets the minimum size
|
||||
"secondLeaderChance": 30,
|
||||
// Every x person in a patrol there will be a specialist role (machinegunner, autorifleman, marksman, etc)
|
||||
"specialistEveryPerson": 3
|
||||
},
|
||||
"checkpoints": {
|
||||
// Minimum size a patrol needs to be to have a chance for a second leader
|
||||
"minSecondLeaderSize": 4,
|
||||
// Chance (percentage) for a patrol to have a second leader if it meets the minimum size
|
||||
"secondLeaderChance": 35,
|
||||
// Every x person in a patrol there will be a specialist role (machinegunner, autorifleman, marksman, etc)
|
||||
"specialistEveryPerson": 3
|
||||
},
|
||||
// Location-specific settings. You can add more locations by copying one of the existing ones and changing the name to the map's internal name
|
||||
"locations": {
|
||||
"woods": {
|
||||
// Location-specific patrol settings
|
||||
"patrol": {
|
||||
// Enable or disable patrols on this map
|
||||
"enablePatrols": true,
|
||||
// Chance (percentage) for a patrol to spawn in a raid
|
||||
"patrolChance": 50,
|
||||
// Maximum number of patrols that can spawn in a raid. Each patrol roll is independent, increasing the overall chance to encounter a patrol and allowing multiple patrols
|
||||
"patrolAmount": 1,
|
||||
// Minimum members in a patrol
|
||||
"patrolMin": 3,
|
||||
// Maximum members in a patrol
|
||||
"patrolMax": 6,
|
||||
// Bot Zones to spawn patrols in. Picks randomly, eliminating choices for subsequent patrols until all are used, then resets
|
||||
"patrolZones": [ "ZoneHouse", "ZoneMiniHouse", "ZoneBrokenVill" ],
|
||||
// Minimum time a patrol can spawn after raid start. Avoid setting this less than 120 to prevent issues with checkpoints
|
||||
"patrolTimeMin": 300,
|
||||
// Maximum time a patrol can spawn after raid start
|
||||
"patrolTimeMax": 1680
|
||||
},
|
||||
// Location-specific checkpoint settings
|
||||
"checkpoint": {
|
||||
// Enable start-of-raid checkpoints on this map
|
||||
"enableCheckpoints": true,
|
||||
// Amount of checkpoints that can be in raid. Each checkpoint roll is independent, increasing the overall chance to encounter a checkpoint and allowing multiple checkpoints
|
||||
"checkpointAmount": 2,
|
||||
// Collection of the different checkpoints
|
||||
"checkpointZones": [
|
||||
{
|
||||
// Bot zone for this checkpoint
|
||||
"checkpointZone": "ZoneRoad",
|
||||
// Chance (percentage) for this checkpoint to spawn if selected
|
||||
"checkpointChance": 40,
|
||||
// Minimum members in this checkpoint
|
||||
"checkpointMin": 3,
|
||||
// Maximum members in this checkpoint
|
||||
"checkpointMax": 4,
|
||||
// Radius around the coordinates that bots will find cover points within
|
||||
"checkpointRadius": 20,
|
||||
// Coordinates for this checkpoint
|
||||
"x": -162.703,
|
||||
"y": -0.982,
|
||||
"z": 393.776
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"bigmap": {
|
||||
"patrol": {
|
||||
"enablePatrols": true,
|
||||
"patrolChance": 50,
|
||||
"patrolAmount": 2,
|
||||
"patrolMin": 4,
|
||||
"patrolMax": 7,
|
||||
"patrolZones": [ "ZoneBlockPost", "ZoneCrossRoad", "ZoneTankSquare" ],
|
||||
"patrolTimeMin": 300,
|
||||
"patrolTimeMax": 1200
|
||||
},
|
||||
"checkpoint": {
|
||||
"enableCheckpoints": true,
|
||||
"checkpointAmount": 2,
|
||||
"checkpointZones": [
|
||||
{
|
||||
"checkpointZone": "ZoneWade",
|
||||
"checkpointChance": 50,
|
||||
"checkpointMin": 3,
|
||||
"checkpointMax": 5,
|
||||
"checkpointRadius": 20,
|
||||
"x": -15.731,
|
||||
"y": -0.224,
|
||||
"z": -118.653
|
||||
},
|
||||
{
|
||||
"checkpointZone": "ZoneBlockPost",
|
||||
"checkpointChance": 40,
|
||||
"checkpointMin": 2,
|
||||
"checkpointMax": 3,
|
||||
"checkpointRadius": 20,
|
||||
"x": 645.827,
|
||||
"y": 0.242,
|
||||
"z": 105.409
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"interchange": {
|
||||
"patrol": {
|
||||
"enablePatrols": true,
|
||||
"patrolChance": 50,
|
||||
"patrolAmount": 2,
|
||||
"patrolMin": 4,
|
||||
"patrolMax": 6,
|
||||
"patrolZones": [ "ZoneRoad", "ZoneOLI", "ZoneIDEAPark" ],
|
||||
"patrolTimeMin": 300,
|
||||
"patrolTimeMax": 1600
|
||||
},
|
||||
"checkpoint": {
|
||||
"enableCheckpoints": false,
|
||||
"checkpointAmount": 1,
|
||||
"checkpointZones": [
|
||||
|
||||
]
|
||||
}
|
||||
},
|
||||
"shoreline": {
|
||||
"patrol": {
|
||||
"enablePatrols": true,
|
||||
"patrolChance": 40,
|
||||
"patrolAmount": 2,
|
||||
"patrolMin": 4,
|
||||
"patrolMax": 7,
|
||||
"patrolZones": [ "ZoneGasStation", "ZoneRailWays", "ZoneBusStation" ],
|
||||
"patrolTimeMin": 300,
|
||||
"patrolTimeMax": 1600
|
||||
},
|
||||
"checkpoint": {
|
||||
"enableCheckpoints": false,
|
||||
"checkpointAmount": 1,
|
||||
"checkpointZones": [
|
||||
{
|
||||
"checkpointZone": "ZoneRailWays",
|
||||
"checkpointChance": 70,
|
||||
"checkpointMin": 3,
|
||||
"checkpointMax": 5,
|
||||
"checkpointRadius": 10,
|
||||
"x": -845.835,
|
||||
"y": -59.117,
|
||||
"z": 474.212
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"tarkovstreets": {
|
||||
"patrol": {
|
||||
"enablePatrols": true,
|
||||
"patrolChance": 50,
|
||||
"patrolAmount": 2,
|
||||
"patrolMin": 4,
|
||||
"patrolMax": 7,
|
||||
"patrolZones": [ "ZoneFactory", "ZoneCard1", "ZoneSW01" ],
|
||||
"patrolTimeMin": 300,
|
||||
"patrolTimeMax": 1800
|
||||
},
|
||||
"checkpoint": {
|
||||
"enableCheckpoints": false,
|
||||
"checkpointAmount": 1,
|
||||
"checkpointZones": [
|
||||
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
3
SPT/user/mods/RUAFComeHome/db/CustomLocales/en.json
Normal file
3
SPT/user/mods/RUAFComeHome/db/CustomLocales/en.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"ScavRole/RUAF": "RUAF"
|
||||
}
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
{
|
||||
"equipment": {
|
||||
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
"ak74_mags_standard": {
|
||||
"ak74 mag 30": {
|
||||
"id": "55d480c04bdc2d1d4e8b456a"
|
||||
},
|
||||
"ak12 early mag": {
|
||||
"id": "649ec30cb013f04a700e60fb"
|
||||
},
|
||||
"ak12 mag": {
|
||||
"id": "5bed61680db834001d2c45ab"
|
||||
}
|
||||
},
|
||||
"ak74_mags_auto": {
|
||||
"rpk16 95": {
|
||||
"id": "5bed625c0db834001c062946"
|
||||
},
|
||||
"rpk74m 45": {
|
||||
"id": "55d481904bdc2d8c2f8b456a"
|
||||
}
|
||||
},
|
||||
"buffer_stocks": {
|
||||
"ak12 stock": {
|
||||
"id": "5beec8c20db834001d2c465c"
|
||||
}
|
||||
},
|
||||
"dovetail_optics": {
|
||||
"pk1 obzor": {
|
||||
"id": "618a5d5852ecee1505530b2a",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"dovetail_mid":{
|
||||
"usp1": {
|
||||
"id": "5cf638cbd7f00c06595bc936",
|
||||
"chance": 10,
|
||||
"slots": {
|
||||
"mod_tactical": ["5cf639aad7f00c065703d455"]
|
||||
}
|
||||
},
|
||||
"1p78 mount": {
|
||||
"id": "618a75c9a3884f56c957ca1b",
|
||||
"chance": 10,
|
||||
"children": {
|
||||
"1p78": {
|
||||
"id": "618a75f0bd321d49084cd399",
|
||||
"chance": 10,
|
||||
"slots": {
|
||||
"mod_tactical": ["618a760e526131765025aae3"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": ["1p78"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"dovetail_long": {
|
||||
"1p59 mount": {
|
||||
"id": "5d0a29ead7ad1a0026013f27",
|
||||
"chance": 10,
|
||||
"children": {
|
||||
"1p59": {
|
||||
"id": "5d0a3a58d7ad1a669c15ca14",
|
||||
"chance": 10,
|
||||
"slots": {
|
||||
"mod_tactical": ["5d0b5cd3d7ad1a3fe32ad263"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": ["1p59"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"dovetail_pso": {
|
||||
"pso1m2": {
|
||||
"id": "5c82343a2e221644f31c0611",
|
||||
"chance": 10,
|
||||
"slots": {
|
||||
"mod_tactical": ["57f3a5ae2459772b0e0bf19e"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scopes_mid": {
|
||||
"elcan": {
|
||||
"id": "57ac965c24597706be5f975c",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
},
|
||||
"tan elcan": {
|
||||
"id": "57aca93d2459771f2c7e26db",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
},
|
||||
"ta51 mount": {
|
||||
"id": "59db7eed86f77461f8380365",
|
||||
"chance": 20,
|
||||
"children": {},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_acog"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scopes_long": {
|
||||
"geissele mount": {
|
||||
"id": "618b9643526131765025ab35",
|
||||
"chance": 10,
|
||||
"children": {
|
||||
"ring cap": {
|
||||
"id": "618b9671d14d6d5ab879c5ea",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_30"],
|
||||
"mod_mount": ["618b9671d14d6d5ab879c5ea"]
|
||||
}
|
||||
},
|
||||
"nightforce mount": {
|
||||
"id": "5aa66a9be5b5b0214e506e89",
|
||||
"chance": 10,
|
||||
"children": {},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_34"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"optics_acog":{
|
||||
"acog" : {
|
||||
"id": "5c05293e0db83400232fff80",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"tan acog": {
|
||||
"id": "5c052a900db834001a66acbd",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"weird acog": {
|
||||
"id": "59db7e1086f77448be30ddf3",
|
||||
"chance": 15,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"optics_30": {
|
||||
"vudu": {
|
||||
"id": "5b3b99475acfc432ff4dcbee",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"leupold": {
|
||||
"id": "5a37cb10c4a282329a73b4e7",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"march": {
|
||||
"id": "57c5ac0824597754771e88a9",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"optics_34": {
|
||||
"atacr": {
|
||||
"id": "5aa66be6e5b5b0214e506e97",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"pmii": {
|
||||
"id": "61714eec290d254f5e6b2ffc",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"sights": {
|
||||
"krechet": {
|
||||
"id": "609a63b6e2ff132951242d09",
|
||||
"chance": 50,
|
||||
"children": {}
|
||||
},
|
||||
"pk-120": {
|
||||
"id": "5c0505e00db834001b735073",
|
||||
"chance": 70,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"compact_sights": {
|
||||
|
||||
},
|
||||
"grips": {
|
||||
"p2 grip": {
|
||||
"id": "64806bdd26c80811d408d37a",
|
||||
"chance": 40,
|
||||
"children": {}
|
||||
},
|
||||
"rk5": {
|
||||
"id": "5c1bc7432e221602b412949d",
|
||||
"chance": 40,
|
||||
"children": {}
|
||||
},
|
||||
"rk1": {
|
||||
"id": "5c1bc5612e221602b5429350"
|
||||
}
|
||||
},
|
||||
"grips_mlok": {
|
||||
"magpul afg mlok tan": {
|
||||
"id": "57cffcd624597763133760c5"
|
||||
},
|
||||
"dd vert mlok tan": {
|
||||
"id": "651a8e529829226ceb67c319"
|
||||
},
|
||||
"bcm mlok blk": {
|
||||
"id": "665d5d9e338229cfd6078da1"
|
||||
}
|
||||
},
|
||||
"lasers_common": {
|
||||
"peq15": {
|
||||
"id": "544909bb4bdc2d6f028b4577"
|
||||
},
|
||||
"la5b": {
|
||||
"id": "5c06595c0db834001a66af6c"
|
||||
}
|
||||
},
|
||||
"lasers_top": {
|
||||
"mawl": {
|
||||
"id": "644a3df63b0b6f03e101e065"
|
||||
}
|
||||
},
|
||||
"lasers_side": {
|
||||
|
||||
},
|
||||
"lights": {
|
||||
"wmx": {
|
||||
"id": "626becf9582c3e319310b837"
|
||||
},
|
||||
"25mm": {
|
||||
"id": "57d17e212459775a1179a0f5",
|
||||
"slots": {
|
||||
"mod_flashlight": ["lights_25"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"lights_25" : {
|
||||
"ultrafire wf": {
|
||||
"id": "57d17c5e2459775a5c57d17d"
|
||||
}
|
||||
},
|
||||
"plates_side": {
|
||||
"sapi side": {
|
||||
"id": "6557458f83942d705f0c4962"
|
||||
},
|
||||
"esapi side": {
|
||||
"id": "64afdb577bb3bfe8fe03fd1d"
|
||||
}
|
||||
},
|
||||
"plates": {
|
||||
"sapi": {
|
||||
"id": "655746010177119f4a097ff7"
|
||||
},
|
||||
"esapi": {
|
||||
"id": "64afdcb83efdfea28601d041"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
47
SPT/user/mods/RUAFComeHome/db/bots/loadouts/common/ak12.json
Normal file
47
SPT/user/mods/RUAFComeHome/db/bots/loadouts/common/ak12.json
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"ak12_handguards": {
|
||||
"ak12 handguard": {
|
||||
"id": "649ec127c93611967b034957",
|
||||
"slots": {
|
||||
"mod_foregrip": [
|
||||
"grips"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ak12_dustcovers": {
|
||||
"ak12 dustcover": {
|
||||
"id": "649ec2f3961514b22506b111",
|
||||
"slots": {
|
||||
"mod_scope": [
|
||||
"sights"
|
||||
],
|
||||
"mod_sight_rear": [
|
||||
"ak12_rear_sights"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ak12_rear_sights": {
|
||||
"ak12 rear sight": {
|
||||
"id": "649ec2da59cbb3c813042dca",
|
||||
"slots": {
|
||||
"mod_sight_rear": [
|
||||
"649ec2cec93611967b03495e"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ak12_stocks_special": {
|
||||
"ak12 buffer": {
|
||||
"id": "649ec87d8007560a9001ab36",
|
||||
"slots": {
|
||||
"mod_stock": ["buffer_stocks"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"ak74m_gas_block":{
|
||||
"ak74m gas block": {
|
||||
"id": "59c6633186f7740cf0493bb9",
|
||||
"slots": {
|
||||
"mod_handguard": ["ak74m_handguards"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ak74m_handguards": {
|
||||
"ak74m handguard": {
|
||||
"id": "5648b1504bdc2d9d488b4584"
|
||||
},
|
||||
"ak100 handguard": {
|
||||
"id": "5cbda392ae92155f3c17c39f",
|
||||
"slots": {
|
||||
"mod_foregrip": [
|
||||
"grips"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ak74m_dustcovers": {
|
||||
"ak74m dustcover": {
|
||||
"id": "5ac50da15acfc4001718d287"
|
||||
},
|
||||
"bastion dustcover": {
|
||||
"id": "5d2c76ed48f03532f2136169",
|
||||
"slots": {
|
||||
"mod_scope": [
|
||||
"sights"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ak74m_stocks_special": {
|
||||
"ak74m stock": {
|
||||
"id": "5ac50c185acfc400163398d4"
|
||||
},
|
||||
"ak12 buffer": {
|
||||
"id": "649ec87d8007560a9001ab36",
|
||||
"slots": {
|
||||
"mod_stock": ["buffer_stocks"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
17
SPT/user/mods/RUAFComeHome/db/bots/loadouts/common/pk.json
Normal file
17
SPT/user/mods/RUAFComeHome/db/bots/loadouts/common/pk.json
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"pkm_barrels": {
|
||||
"pkm barrel": {
|
||||
"id": "646371faf2404ab67905c8e9",
|
||||
"slots": {
|
||||
"mod_muzzle": [
|
||||
"6492efb8cfcf7c89e701abf3",
|
||||
"6492efe46cc7e29a6f03b2a0"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
47
SPT/user/mods/RUAFComeHome/db/bots/loadouts/common/rpk.json
Normal file
47
SPT/user/mods/RUAFComeHome/db/bots/loadouts/common/rpk.json
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"rpk16_dustcover": {
|
||||
"rpk16_dustcover": {
|
||||
"id": "5beec91a0db834001961942d",
|
||||
"children": {
|
||||
"rpk16 rear sight base": {
|
||||
"id": "5beec9450db83400970084fd",
|
||||
"slots": {
|
||||
"mod_sight_rear": ["5bf3f59f0db834001a6fa060"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": [
|
||||
"sights"
|
||||
],
|
||||
"mod_sight_rear": [
|
||||
"rpk16 rear sight base"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"rpk16_long_barrel": {
|
||||
"rpk16_long_barrel": {
|
||||
"id": "5beec2820db834001b095426",
|
||||
"slots": {
|
||||
"mod_muzzle": [
|
||||
"5beec3420db834001b095429"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"rpk16_handguard": {
|
||||
"rpk16_handguard": {
|
||||
"id": "5beec3e30db8340019619424",
|
||||
"slots": {
|
||||
"mod_foregrip": [
|
||||
"grips"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,263 @@
|
|||
{
|
||||
"equipment": {
|
||||
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
"ak74_mags_standard": {
|
||||
"ak74 mag 30": {
|
||||
"id": "55d480c04bdc2d1d4e8b456a"
|
||||
},
|
||||
"ak12 early mag": {
|
||||
"id": "649ec30cb013f04a700e60fb"
|
||||
},
|
||||
"ak12 mag": {
|
||||
"id": "5bed61680db834001d2c45ab"
|
||||
}
|
||||
},
|
||||
"buffer_stocks": {
|
||||
"ak12 stock": {
|
||||
"id": "5beec8c20db834001d2c465c"
|
||||
}
|
||||
},
|
||||
"dovetail_optics": {
|
||||
"pk1 obzor": {
|
||||
"id": "618a5d5852ecee1505530b2a",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"dovetail_mid":{
|
||||
"usp1": {
|
||||
"id": "5cf638cbd7f00c06595bc936",
|
||||
"chance": 10,
|
||||
"slots": {
|
||||
"mod_tactical": ["5cf639aad7f00c065703d455"]
|
||||
}
|
||||
},
|
||||
"1p78 mount": {
|
||||
"id": "618a75c9a3884f56c957ca1b",
|
||||
"chance": 10,
|
||||
"children": {
|
||||
"1p78": {
|
||||
"id": "618a75f0bd321d49084cd399",
|
||||
"chance": 10,
|
||||
"slots": {
|
||||
"mod_tactical": ["618a760e526131765025aae3"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": ["1p78"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"dovetail_long": {
|
||||
"1p59 mount": {
|
||||
"id": "5d0a29ead7ad1a0026013f27",
|
||||
"chance": 10,
|
||||
"children": {
|
||||
"1p59": {
|
||||
"id": "5d0a3a58d7ad1a669c15ca14",
|
||||
"chance": 10,
|
||||
"slots": {
|
||||
"mod_tactical": ["5d0b5cd3d7ad1a3fe32ad263"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": ["1p59"]
|
||||
}
|
||||
},
|
||||
"pso1m2": {
|
||||
"id": "5c82343a2e221644f31c0611",
|
||||
"chance": 10,
|
||||
"slots": {
|
||||
"mod_tactical": ["57f3a5ae2459772b0e0bf19e"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scopes_mid": {
|
||||
"elcan": {
|
||||
"id": "57ac965c24597706be5f975c",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
},
|
||||
"tan elcan": {
|
||||
"id": "57aca93d2459771f2c7e26db",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
},
|
||||
"ta51 mount": {
|
||||
"id": "59db7eed86f77461f8380365",
|
||||
"chance": 20,
|
||||
"children": {},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_acog"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scopes_long": {
|
||||
"geissele mount": {
|
||||
"id": "618b9643526131765025ab35",
|
||||
"chance": 10,
|
||||
"children": {
|
||||
"ring cap": {
|
||||
"id": "618b9671d14d6d5ab879c5ea",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_30"],
|
||||
"mod_mount": ["618b9671d14d6d5ab879c5ea"]
|
||||
}
|
||||
},
|
||||
"nightforce mount": {
|
||||
"id": "5aa66a9be5b5b0214e506e89",
|
||||
"chance": 10,
|
||||
"children": {},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_34"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"optics_acog":{
|
||||
"acog" : {
|
||||
"id": "5c05293e0db83400232fff80",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"tan acog": {
|
||||
"id": "5c052a900db834001a66acbd",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"weird acog": {
|
||||
"id": "59db7e1086f77448be30ddf3",
|
||||
"chance": 15,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"optics_30": {
|
||||
"vudu": {
|
||||
"id": "5b3b99475acfc432ff4dcbee",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"leupold": {
|
||||
"id": "5a37cb10c4a282329a73b4e7",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"march": {
|
||||
"id": "57c5ac0824597754771e88a9",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"optics_34": {
|
||||
"atacr": {
|
||||
"id": "5aa66be6e5b5b0214e506e97",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"pmii": {
|
||||
"id": "61714eec290d254f5e6b2ffc",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"sights": {
|
||||
"krechet": {
|
||||
"id": "609a63b6e2ff132951242d09",
|
||||
"chance": 50,
|
||||
"children": {}
|
||||
},
|
||||
"pk-120": {
|
||||
"id": "609a63b6e2ff132951242d09",
|
||||
"chance": 50,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"compact_sights": {
|
||||
|
||||
},
|
||||
"grips": {
|
||||
"p2 grip": {
|
||||
"id": "64806bdd26c80811d408d37a",
|
||||
"chance": 40,
|
||||
"children": {}
|
||||
},
|
||||
"rk5": {
|
||||
"id": "5c1bc7432e221602b412949d",
|
||||
"chance": 40,
|
||||
"children": {}
|
||||
},
|
||||
"rk1": {
|
||||
"id": "5c1bc5612e221602b5429350"
|
||||
}
|
||||
},
|
||||
"grips_mlok": {
|
||||
"magpul afg mlok tan": {
|
||||
"id": "57cffcd624597763133760c5"
|
||||
},
|
||||
"dd vert mlok tan": {
|
||||
"id": "651a8e529829226ceb67c319"
|
||||
},
|
||||
"bcm mlok blk": {
|
||||
"id": "665d5d9e338229cfd6078da1"
|
||||
}
|
||||
},
|
||||
"lasers_common": {
|
||||
"peq15": {
|
||||
"id": "544909bb4bdc2d6f028b4577"
|
||||
},
|
||||
"la5b": {
|
||||
"id": "5c06595c0db834001a66af6c"
|
||||
}
|
||||
},
|
||||
"lasers_top": {
|
||||
"mawl": {
|
||||
"id": "644a3df63b0b6f03e101e065"
|
||||
}
|
||||
},
|
||||
"lasers_side": {
|
||||
|
||||
},
|
||||
"lights": {
|
||||
"wmx": {
|
||||
"id": "626becf9582c3e319310b837"
|
||||
},
|
||||
"25mm": {
|
||||
"id": "57d17e212459775a1179a0f5",
|
||||
"slots": {
|
||||
"mod_flashlight": ["lights_25"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"lights_25" : {
|
||||
"ultrafire wf": {
|
||||
"id": "57d17c5e2459775a5c57d17d"
|
||||
}
|
||||
},
|
||||
"plates_side": {
|
||||
"sapi side": {
|
||||
"id": "6557458f83942d705f0c4962"
|
||||
},
|
||||
"esapi side": {
|
||||
"id": "64afdb577bb3bfe8fe03fd1d"
|
||||
}
|
||||
},
|
||||
"plates": {
|
||||
"sapi": {
|
||||
"id": "655746010177119f4a097ff7"
|
||||
},
|
||||
"esapi": {
|
||||
"id": "64afdcb83efdfea28601d041"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
40
SPT/user/mods/RUAFComeHome/db/bots/loadouts/common/svds.json
Normal file
40
SPT/user/mods/RUAFComeHome/db/bots/loadouts/common/svds.json
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"svds_barrels": {
|
||||
"svds barrel": {
|
||||
"id": "5c471cb32e221602b177afaa",
|
||||
"children": {
|
||||
"svds_muzzlebrake": {
|
||||
"id": "5c471bfc2e221602b21d4e17",
|
||||
"slots": {
|
||||
"mod_sight_front": ["5c471ba12e221602b3137d76"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_muzzle": [
|
||||
"svds_muzzlebrake"
|
||||
],
|
||||
"mod_gas_block": [
|
||||
"5c471c842e221615214259b5"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"svds_upper_band": {
|
||||
"svds upper band": {
|
||||
"id": "5c471c2d2e22164bef5d077f",
|
||||
"slots": {
|
||||
"mod_handguard": [
|
||||
"5c471c6c2e221602b66cd9ae"
|
||||
],
|
||||
"mod_sight_rear": [
|
||||
"5c471b7e2e2216152006e46c"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"rpk16": {
|
||||
"id": "5beed0f50db834001c062b12",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"mod_barrel": [ "rpk16_long_barrel" ],
|
||||
"mod_pistol_grip": [ "5beec8ea0db834001a6f9dbf" ],
|
||||
"mod_reciever": [ "rpk16_dustcover" ],
|
||||
"mod_magazine": [ "ak74_mags_auto" ],
|
||||
"mod_stock_001": [
|
||||
"ak12_stocks_special",
|
||||
"6761779c48fa5c377e06fc3f"
|
||||
],
|
||||
"mod_handguard": [ "rpk16_handguard" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"TacticalVest": {
|
||||
"alpha vest": {
|
||||
"chance": 50
|
||||
},
|
||||
"tv-109": {
|
||||
"chance": 0
|
||||
},
|
||||
"6sh112": {
|
||||
"chance": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
109
SPT/user/mods/RUAFComeHome/db/bots/loadouts/ruafGrenadier.json
Normal file
109
SPT/user/mods/RUAFComeHome/db/bots/loadouts/ruafGrenadier.json
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"rshg-2": {
|
||||
"id": "676bf44c5539167c3603e869",
|
||||
"chance": 50
|
||||
}
|
||||
},
|
||||
"ArmorVest": {
|
||||
"6b13 emr": {
|
||||
"id": "5c0e53c886f7747fa54205c7",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"soft_armor_front": [ "654a8b0b0337d53f9102c2ae" ],
|
||||
"soft_armor_back": [ "654a8976f414fcea4004d78b" ],
|
||||
"soft_armor_left": [ "654a8b3df414fcea4004d78f" ],
|
||||
"soft_armor_right": [ "654a8b80f414fcea4004d797" ],
|
||||
"Collar": [ "654a8ae00337d53f9102c2aa" ],
|
||||
"Groin": [ "654a8bc5f414fcea4004d79b" ],
|
||||
"front_plate": [ "656f603f94b480b8a500c0d6" ],
|
||||
"back_plate": [ "656efd66034e8e01c407f35c" ]
|
||||
}
|
||||
},
|
||||
"6b23 emr": {
|
||||
"id": "5c0e5bab86f77461f55ed1f3",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"Soft_armor_front": [ "6571b27a6d84a2b8b6007f92" ],
|
||||
"Soft_armor_back": [ "6571baa74cb80d995d0a1490" ],
|
||||
"Soft_armor_left": [ "6571baac6d84a2b8b6007fa3" ],
|
||||
"soft_armor_right": [ "6571bab0f41985531a038091" ],
|
||||
"Collar": [ "6571babb4076795e5e07383f" ],
|
||||
"Groin": [ "6571bac34076795e5e073843" ],
|
||||
"Groin_back": [ "6571babf4cb80d995d0a1494" ],
|
||||
"Front_plate": [ "654a4dea7c17dec2f50cc86a" ],
|
||||
"Back_plate": [ "657b22485f444d6dff0c6c2f" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"TacticalVest": {
|
||||
"alpha vest": {
|
||||
"id": "592c2d1a86f7746dbe2af32a",
|
||||
"chance": 50
|
||||
},
|
||||
"tv-109": {
|
||||
"id": "59e7643b86f7742cbf2c109a",
|
||||
"chance": 100
|
||||
},
|
||||
"6sh112": {
|
||||
"id": "5929a2a086f7744f4b234d43",
|
||||
"chance": 100
|
||||
}
|
||||
},
|
||||
"Headwear": {
|
||||
"6b47 emr": {
|
||||
"id": "5aa7cfc0e5b5b00015693143",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"Helmet_top": [ "657baaf0b7e9ca9a02045c02" ],
|
||||
"Helmet_back": [ "657bab6ec6f689d3a205b85f" ],
|
||||
"Helmet_ears": [ "657babc6f58ba5a6250107a2" ]
|
||||
}
|
||||
},
|
||||
"6b47": {
|
||||
"id": "5a7c4850e899ef00150be885",
|
||||
"chance": 75,
|
||||
"slots": {
|
||||
"Helmet_top": [ "657baaf0b7e9ca9a02045c02" ],
|
||||
"Helmet_back": [ "657bab6ec6f689d3a205b85f" ],
|
||||
"Helmet_ears": [ "657babc6f58ba5a6250107a2" ]
|
||||
}
|
||||
},
|
||||
"uxpro": {
|
||||
"id": "5aa2ba46e5b5b000137b758d",
|
||||
"chance": 30
|
||||
},
|
||||
"beanie": {
|
||||
"id": "572b7fa124597762b472f9d2",
|
||||
"chance": 30
|
||||
}
|
||||
},
|
||||
"Eyewear": {
|
||||
"tactical glasses": {
|
||||
"id": "557ff21e4bdc2d89578b4586",
|
||||
"chance": 30
|
||||
},
|
||||
"dundukk orange": {
|
||||
"id": "67af41dd1eb308667602db4a",
|
||||
"chance": 30
|
||||
}
|
||||
},
|
||||
"FaceCover": {
|
||||
"balaclava": {
|
||||
"id": "572b7f1624597762ae139822",
|
||||
"chance": 30
|
||||
},
|
||||
"cold fear": {
|
||||
"id": "5ab8f39486f7745cd93a1cca",
|
||||
"chance": 30
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"pkm": {
|
||||
"id": "64637076203536ad5600c990",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"mod_bipod": [ "6464d870bb2c580352070cc4" ],
|
||||
"mod_pistolgrip": [ "646371779f5f0ea59a04c204" ],
|
||||
"mod_barrel": [ "pkm_barrels" ],
|
||||
"mod_magazine": [ "646372518610c40fc20204e8" ],
|
||||
"mod_stock": [ "646371a9f2404ab67905c8e6" ],
|
||||
"mod_sight_rear": [ "6492fb8253acae0af00a29b6" ]
|
||||
}
|
||||
},
|
||||
"pkp": {
|
||||
"id": "64ca3d3954fc657e230529cc",
|
||||
"chance": 40,
|
||||
"slots": {
|
||||
"mod_bipod": [ "6464d870bb2c580352070cc4" ],
|
||||
"mod_pistolgrip": [ "64cbad529f7cf7f75c077fd5" ],
|
||||
"mod_barrel": [ "pkm_barrels" ],
|
||||
"mod_magazine": [ "646372518610c40fc20204e8" ],
|
||||
"mod_stock": [ "646371a9f2404ab67905c8e6", "6492e3a97df7d749100e29ee" ],
|
||||
"mod_sight_rear": [ "6492fb8253acae0af00a29b6" ],
|
||||
"mod_scope": [ "dovetail_optics", "dovetail_mid" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Holster": {
|
||||
"grach": {
|
||||
"chance": 100
|
||||
}
|
||||
},
|
||||
"ArmorVest": {
|
||||
"6b13 emr": {
|
||||
"chance": 100
|
||||
},
|
||||
"6b23 emr": {
|
||||
"chance": 100
|
||||
},
|
||||
"6b43": {
|
||||
"chance": 300
|
||||
}
|
||||
},
|
||||
"TacticalVest": {
|
||||
"alpha vest": {
|
||||
"chance": 50
|
||||
},
|
||||
"tv-109": {
|
||||
"chance": 100
|
||||
},
|
||||
"6sh112": {
|
||||
"chance": 0
|
||||
}
|
||||
},
|
||||
"Headwear": {
|
||||
"6b47 emr": {
|
||||
"chance": 100
|
||||
},
|
||||
"6b47": {
|
||||
"chance": 75
|
||||
},
|
||||
"uxpro": {
|
||||
"chance": 30
|
||||
},
|
||||
"beanie": {
|
||||
"chance": 30
|
||||
}
|
||||
},
|
||||
"Eyewear": {
|
||||
"tactical glasses": {
|
||||
"chance": 30
|
||||
},
|
||||
"dundukk orange": {
|
||||
"chance": 30
|
||||
}
|
||||
},
|
||||
"FaceCover": {
|
||||
"balaclava": {
|
||||
"chance": 30
|
||||
},
|
||||
"cold fear": {
|
||||
"chance": 30
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"svds": {
|
||||
"id": "5c46fbd72e2216398b5a8c9c",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"mod_pistol_grip": [ "5c471be12e221602b66cd9ac" ],
|
||||
"mod_barrel": [ "svds_barrels" ],
|
||||
"mod_magazine": [ "5c471c442e221602b542a6f8", "5c88f24b2e22160bc12c69a6" ],
|
||||
"mod_stock": [ "5c471b5d2e221602b21d4e14" ],
|
||||
"mod_reciever": [ "5c471bd12e221602b4129c3a" ],
|
||||
"mod_mount_000": [ "dovetail_long" ],
|
||||
"mod_mount_002": [ "dovetail_pso" ],
|
||||
"mod_mount_001": [ "svds_upper_band" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Holster": {
|
||||
"grach": {
|
||||
"chance": 100
|
||||
}
|
||||
},
|
||||
"ArmorVest": {
|
||||
"6b13 emr": {
|
||||
"chance": 100
|
||||
},
|
||||
"6b23 emr": {
|
||||
"chance": 100
|
||||
},
|
||||
"6b43": {
|
||||
"chance": 0
|
||||
}
|
||||
},
|
||||
"TacticalVest": {
|
||||
"alpha vest": {
|
||||
"chance": 0
|
||||
},
|
||||
"tv-109": {
|
||||
"chance": 100
|
||||
},
|
||||
"6sh112": {
|
||||
"chance": 170
|
||||
}
|
||||
},
|
||||
"Headwear": {
|
||||
"6b47 emr": {
|
||||
"chance": 100
|
||||
},
|
||||
"6b47": {
|
||||
"chance": 0
|
||||
},
|
||||
"uxpro": {
|
||||
"chance": 50
|
||||
},
|
||||
"beanie": {
|
||||
"chance": 50
|
||||
}
|
||||
},
|
||||
"Eyewear": {
|
||||
"tactical glasses": {
|
||||
"chance": 30
|
||||
},
|
||||
"dundukk orange": {
|
||||
"chance": 30
|
||||
}
|
||||
},
|
||||
"FaceCover": {
|
||||
"balaclava": {
|
||||
"chance": 30
|
||||
},
|
||||
"cold fear": {
|
||||
"chance": 30
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"ak74m": {
|
||||
"id": "5ac4cd105acfc40016339859",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"mod_gas_block": [ "ak74m_gas_block" ],
|
||||
"mod_muzzle": [ "5ac7655e5acfc40016339a19" ],
|
||||
"mod_pistol_grip": [ "5649ade84bdc2d1b2b8b4587" ],
|
||||
"mod_reciever": [ "ak74m_dustcovers" ],
|
||||
"mod_magazine": [ "ak74_mags_standard" ],
|
||||
"mod_stock": [ "5ac50c185acfc400163398d4" ],
|
||||
"mod_mount_000": [ "dovetail_mid", "dovetail_optics" ],
|
||||
"mod_sight_rear": [ "5ac72e475acfc400180ae6fe" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,125 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"ak74m": {
|
||||
"id": "5ac4cd105acfc40016339859",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"mod_gas_block": [
|
||||
"ak74m_gas_block"
|
||||
],
|
||||
"mod_muzzle": [
|
||||
"5ac7655e5acfc40016339a19"
|
||||
],
|
||||
"mod_pistol_grip": [
|
||||
"5649ade84bdc2d1b2b8b4587",
|
||||
"5beec8ea0db834001a6f9dbf"
|
||||
],
|
||||
"mod_reciever": [
|
||||
"ak74m_dustcovers"
|
||||
],
|
||||
"mod_magazine": [
|
||||
"ak74_mags_standard"
|
||||
],
|
||||
"mod_stock": [
|
||||
"ak74m_stocks_special"
|
||||
],
|
||||
"mod_mount_000": [
|
||||
"dovetail_mid",
|
||||
"dovetail_optics"
|
||||
],
|
||||
"mod_sight_rear": [
|
||||
"5ac72e475acfc400180ae6fe"
|
||||
],
|
||||
"mod_launcher": [
|
||||
"62e7e7bbe6da9612f743f1e0"
|
||||
]
|
||||
}
|
||||
},
|
||||
"ak12": {
|
||||
"id": "6499849fc93611967b034949",
|
||||
"chance": 65,
|
||||
"slots": {
|
||||
"mod_gas_block": [
|
||||
"649ec107961514b22506b10c"
|
||||
],
|
||||
"mod_handguard": [
|
||||
"ak12_handguards"
|
||||
],
|
||||
"mod_muzzle": [
|
||||
"649ec2af961514b22506b10f"
|
||||
],
|
||||
"mod_pistol_grip": [
|
||||
"5beec8ea0db834001a6f9dbf"
|
||||
],
|
||||
"mod_reciever": [
|
||||
"ak12_dustcovers"
|
||||
],
|
||||
"mod_magazine": [
|
||||
"ak74_mags_standard"
|
||||
],
|
||||
"mod_stock_001": [
|
||||
"ak12_stocks_special",
|
||||
"6761779c48fa5c377e06fc3f"
|
||||
],
|
||||
"mod_launcher": [
|
||||
"62e7e7bbe6da9612f743f1e0"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Holster": {
|
||||
"grach": {
|
||||
"chance": 100
|
||||
}
|
||||
},
|
||||
"ArmorVest": {
|
||||
"6b43": {
|
||||
"chance": 200
|
||||
}
|
||||
},
|
||||
"TacticalVest": {
|
||||
"alpha vest": {
|
||||
"chance": 50
|
||||
},
|
||||
"tv-109": {
|
||||
"chance": 0
|
||||
},
|
||||
"6sh112": {
|
||||
"chance": 0
|
||||
}
|
||||
},
|
||||
"Headwear": {
|
||||
"6b47 emr": {
|
||||
"chance": 100
|
||||
},
|
||||
"6b47": {
|
||||
"chance": 25
|
||||
},
|
||||
"uxpro": {
|
||||
"chance": 0
|
||||
},
|
||||
"beanie": {
|
||||
"chance": 0
|
||||
}
|
||||
},
|
||||
"Eyewear": {
|
||||
"tactical glasses": {
|
||||
"chance": 30
|
||||
},
|
||||
"dundukk orange": {
|
||||
"chance": 30
|
||||
}
|
||||
},
|
||||
"FaceCover": {
|
||||
"balaclava": {
|
||||
"chance": 30
|
||||
},
|
||||
"cold fear": {
|
||||
"chance": 30
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {},
|
||||
"categories": {}
|
||||
}
|
||||
|
|
@ -0,0 +1,129 @@
|
|||
{
|
||||
"equipment": {
|
||||
"Holster": {
|
||||
"grach": {
|
||||
"id": "576a581d2459771e7b1bc4f1",
|
||||
"slots": {
|
||||
"mod_pistol_grip": ["576a63cd2459771e796e0e11"],
|
||||
"mod_magazine": ["576a5ed62459771e9c2096cb"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ArmorVest": {
|
||||
"6b13 emr": {
|
||||
"id": "5c0e53c886f7747fa54205c7",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"soft_armor_front": [ "654a8b0b0337d53f9102c2ae" ],
|
||||
"soft_armor_back": [ "654a8976f414fcea4004d78b" ],
|
||||
"soft_armor_left": [ "654a8b3df414fcea4004d78f" ],
|
||||
"soft_armor_right": [ "654a8b80f414fcea4004d797" ],
|
||||
"Collar": [ "654a8ae00337d53f9102c2aa" ],
|
||||
"Groin": [ "654a8bc5f414fcea4004d79b" ],
|
||||
"front_plate": [ "656f603f94b480b8a500c0d6" ],
|
||||
"back_plate": [ "656efd66034e8e01c407f35c" ]
|
||||
}
|
||||
},
|
||||
"6b23 emr": {
|
||||
"id": "5c0e5bab86f77461f55ed1f3",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"Soft_armor_front": [ "6571b27a6d84a2b8b6007f92" ],
|
||||
"Soft_armor_back": [ "6571baa74cb80d995d0a1490" ],
|
||||
"Soft_armor_left": [ "6571baac6d84a2b8b6007fa3" ],
|
||||
"soft_armor_right": [ "6571bab0f41985531a038091" ],
|
||||
"Collar": [ "6571babb4076795e5e07383f" ],
|
||||
"Groin": [ "6571bac34076795e5e073843" ],
|
||||
"Groin_back": [ "6571babf4cb80d995d0a1494" ],
|
||||
"Front_plate": [ "654a4dea7c17dec2f50cc86a" ],
|
||||
"Back_plate": [ "657b22485f444d6dff0c6c2f" ]
|
||||
}
|
||||
},
|
||||
"6b43": {
|
||||
"id": "545cdb794bdc2d3a198b456a",
|
||||
"slots": {
|
||||
"Soft_armor_front": [ "6575ce3716c2762fba0057fd" ],
|
||||
"Soft_armor_back": [ "6575ce45dc9932aed601c616" ],
|
||||
"Soft_armor_left": [ "6575ce5016c2762fba005802" ],
|
||||
"soft_armor_right": [ "6575ce5befc786cd9101a671" ],
|
||||
"Collar": [ "6575ce6f16c2762fba005806" ],
|
||||
"Groin": [ "6575ce8bdc9932aed601c61e" ],
|
||||
"Shoulder_l": [ "6575ce9db15fef3dd4051628" ],
|
||||
"Shoulder_r": [ "6575cea8b15fef3dd405162c" ],
|
||||
"Front_plate": [ "64afc71497cf3a403c01ff38" ],
|
||||
"Back_plate": [ "64afc71497cf3a403c01ff38" ],
|
||||
"Left_side_plate": [ "64afd81707e2cf40e903a316" ],
|
||||
"Right_side_plate": [ "64afd81707e2cf40e903a316" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"TacticalVest": {
|
||||
"alpha vest": {
|
||||
"id": "592c2d1a86f7746dbe2af32a",
|
||||
"chance": 50
|
||||
},
|
||||
"tv-109": {
|
||||
"id": "59e7643b86f7742cbf2c109a",
|
||||
"chance": 100
|
||||
},
|
||||
"6sh112": {
|
||||
"id": "5929a2a086f7744f4b234d43",
|
||||
"chance": 100
|
||||
}
|
||||
},
|
||||
"Headwear": {
|
||||
"6b47 emr": {
|
||||
"chance": 100,
|
||||
"id": "5aa7cfc0e5b5b00015693143",
|
||||
"slots": {
|
||||
"Helmet_top": [ "657baaf0b7e9ca9a02045c02" ],
|
||||
"Helmet_back": [ "657bab6ec6f689d3a205b85f" ],
|
||||
"Helmet_ears": [ "657babc6f58ba5a6250107a2" ]
|
||||
}
|
||||
},
|
||||
"6b47": {
|
||||
"chance": 45,
|
||||
"id": "5a7c4850e899ef00150be885",
|
||||
"slots": {
|
||||
"Helmet_top": [ "657baaf0b7e9ca9a02045c02" ],
|
||||
"Helmet_back": [ "657bab6ec6f689d3a205b85f" ],
|
||||
"Helmet_ears": [ "657babc6f58ba5a6250107a2" ]
|
||||
}
|
||||
},
|
||||
"uxpro": {
|
||||
"id": "5aa2ba46e5b5b000137b758d",
|
||||
"chance": 40
|
||||
},
|
||||
"beanie": {
|
||||
"id": "572b7fa124597762b472f9d2",
|
||||
"chance": 40
|
||||
}
|
||||
},
|
||||
"Eyewear": {
|
||||
"tactical glasses": {
|
||||
"id": "557ff21e4bdc2d89578b4586",
|
||||
"chance": 30
|
||||
},
|
||||
"dundukk orange": {
|
||||
"id": "67af41dd1eb308667602db4a",
|
||||
"chance": 30
|
||||
}
|
||||
},
|
||||
"FaceCover": {
|
||||
"balaclava": {
|
||||
"id": "572b7f1624597762ae139822",
|
||||
"chance": 30
|
||||
},
|
||||
"cold fear": {
|
||||
"id": "5ab8f39486f7745cd93a1cca",
|
||||
"chance": 30
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
66
SPT/user/mods/RUAFComeHome/db/bots/sharedConfig/ruaf.jsonc
Normal file
66
SPT/user/mods/RUAFComeHome/db/bots/sharedConfig/ruaf.jsonc
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
// String, the bot type
|
||||
"type": "ruaf",
|
||||
// Int, amount of preset loadouts that will be generated by SPT to equip bots of this type
|
||||
"presetBatch": 15,
|
||||
// Bool
|
||||
"isBoss": false,
|
||||
// Bool, SPT tries to generate unique names for each bot of this type. Make sure you have enough names in your type for this to work properly.
|
||||
"mustHaveUniqueName": false,
|
||||
// Record: DefaultDurability
|
||||
"durability": {
|
||||
"armor": {
|
||||
"maxDelta": 15,
|
||||
"minDelta": 0,
|
||||
"minLimitPercent": 15,
|
||||
"lowestMaxPercent": 70,
|
||||
"highestMaxPercent": 100
|
||||
},
|
||||
"weapon": {
|
||||
"highestMax": 100,
|
||||
"lowestMax": 85,
|
||||
"maxDelta": 15,
|
||||
"minDelta": 0,
|
||||
"minLimitPercent": 15
|
||||
}
|
||||
},
|
||||
// Dictionary<MongoID (Item IDs), double>
|
||||
"itemSpawnLimits": {
|
||||
"5734758f24597738025ee253": 1
|
||||
},
|
||||
// Record: EquipmentFilters
|
||||
"equipment": {
|
||||
"faceShieldIsActiveChancePercent": 100,
|
||||
"forceOnlyArmoredRigWhenNoArmor": false,
|
||||
"forceStock": true,
|
||||
"laserIsActiveChancePercent": 75,
|
||||
"lightIsActiveDayChancePercent": 25,
|
||||
"lightIsActiveNightChancePercent": 75,
|
||||
"nvgIsActiveChanceDayPercent": 10,
|
||||
"nvgIsActiveChanceNightPercent": 90
|
||||
},
|
||||
"currencyStackSize": {
|
||||
// Roubles
|
||||
"5449016a4bdc2d6f028b456f": {
|
||||
// Amount: weighted chance (higher means more likely to be picked)
|
||||
"10000": 51,
|
||||
"15000": 28,
|
||||
"20000": 13,
|
||||
"25000": 8,
|
||||
"30000": 3,
|
||||
"5000": 200
|
||||
},
|
||||
// Dollars
|
||||
"5696686a4bdc2da3298b456a": {
|
||||
"0": 5
|
||||
},
|
||||
// Euros
|
||||
"569668774bdc2da2298b4568": {
|
||||
"0": 5
|
||||
},
|
||||
// GP Coin
|
||||
"5d235b4d86f7742e017bc88a": {
|
||||
"0": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
6439
SPT/user/mods/RUAFComeHome/db/bots/sharedTypes/ruaf.json
Normal file
6439
SPT/user/mods/RUAFComeHome/db/bots/sharedTypes/ruaf.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"firstName": [
|
||||
"Jr Sgt",
|
||||
"Sgt",
|
||||
"Sr Sgt"
|
||||
]
|
||||
}
|
||||
104
SPT/user/mods/RUAFComeHome/db/bots/sharedTypes/ruaf_all.jsonc
Normal file
104
SPT/user/mods/RUAFComeHome/db/bots/sharedTypes/ruaf_all.jsonc
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
{
|
||||
"firstName": [
|
||||
"Pvt",
|
||||
"Cpl"
|
||||
],
|
||||
"lastName": [
|
||||
"Тайпан",
|
||||
"Секач",
|
||||
"Ястреб",
|
||||
"Мангуст",
|
||||
"Ирбис",
|
||||
"Орлан",
|
||||
"Гепард",
|
||||
"Носорог",
|
||||
"Логгерхед",
|
||||
"Мантис",
|
||||
"Гриззли",
|
||||
"Пума",
|
||||
"Гриф",
|
||||
"Барракуда",
|
||||
"Сапсан",
|
||||
"Питон",
|
||||
"Лис",
|
||||
"Кондор",
|
||||
"Беркут",
|
||||
"Дикобраз",
|
||||
"Пчел",
|
||||
"Волк",
|
||||
"Кобра",
|
||||
"Тарантул",
|
||||
"Гюрза",
|
||||
"Пантера",
|
||||
"Ягуар",
|
||||
"Тигр",
|
||||
"Падальщик",
|
||||
"Росомаха",
|
||||
"Балу",
|
||||
"Варан",
|
||||
"Лев",
|
||||
"Стервятник",
|
||||
"Леопард",
|
||||
"Красный",
|
||||
"Скорпион",
|
||||
"Барс",
|
||||
"Гадюка",
|
||||
"Зубр",
|
||||
"Крачун",
|
||||
"Акула",
|
||||
"Могильник",
|
||||
"Кречет",
|
||||
"Калан",
|
||||
"Шакал",
|
||||
"Орел",
|
||||
"Рысь",
|
||||
"Каракурт",
|
||||
"Вепрь",
|
||||
"Пиранья",
|
||||
"Медведь",
|
||||
"Манул",
|
||||
"Кайман"
|
||||
],
|
||||
"difficulty": {
|
||||
"all": {
|
||||
"Shoot": {
|
||||
"MAX_SUCCESS_GRENADE_LAUNCHER_SHOOT_ATTEMPTS": 2,
|
||||
"MAX_TIME_SEEN_TO_SWITCH_TO_GRENADE_LAUNCHER": 30,
|
||||
"SHOOT_PROBABILITY_GRENADE_LAUNCHER": 80
|
||||
},
|
||||
"Mind": {
|
||||
"CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 0,
|
||||
"CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80,
|
||||
"DEFAULT_BEAR_BEHAVIOUR": "Warn",
|
||||
"DEFAULT_SAVAGE_BEHAVIOUR": "Warn",
|
||||
"DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies",
|
||||
"REVENGE_BOT_TYPES": [
|
||||
848400,
|
||||
848401,
|
||||
848402,
|
||||
848403,
|
||||
848404,
|
||||
848405,
|
||||
"gifter"
|
||||
],
|
||||
"WARN_BOT_TYPES": [
|
||||
"assault",
|
||||
"pmcBear"
|
||||
],
|
||||
"ENEMY_BOT_TYPES": [
|
||||
"pmcUsec",
|
||||
"exUsec",
|
||||
"pmcBot"
|
||||
],
|
||||
"FRIENDLY_BOT_TYPES": [
|
||||
848400,
|
||||
848401,
|
||||
848402,
|
||||
848403,
|
||||
848404,
|
||||
848405
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"appearance": {
|
||||
"body": {
|
||||
"5fce3e47fe40296c1d5fd784": 1
|
||||
},
|
||||
"feet": {
|
||||
"689f11400c10f10000000004": 1,
|
||||
"68cda47bb119e8a6b814daeb": 1
|
||||
},
|
||||
"hands": {
|
||||
"5d1f5aca86f7744bce0ee9f1": 1
|
||||
},
|
||||
"head": {
|
||||
"5cc084dd14c02e000b0550a3": 6577,
|
||||
"5cc2e4d014c02e000d0115f8": 3338,
|
||||
"5cde9ff17d6c8b0474535daa": 3327
|
||||
},
|
||||
"voice": {
|
||||
"5fc1221a95572123ae7384a2": 13440,
|
||||
"5fc50bddb4965a7a2f48c5af": 13260,
|
||||
"5fc613c80b735e7b024c76e2": 8868,
|
||||
"5fc613e10b735e7b024c76e3": 8687,
|
||||
"5fc614130b735e7b024c76e4": 8802,
|
||||
"5fc614290b735e7b024c76e5": 8835,
|
||||
"5fc614390b735e7b024c76e6": 8947,
|
||||
"5fc6144b0b735e7b024c76e7": 8794,
|
||||
"5fc614da00efd824885865c2": 13080
|
||||
}
|
||||
}
|
||||
}
|
||||
196
SPT/user/mods/tacticaltoaster-untargohome/config.jsonc
Normal file
196
SPT/user/mods/tacticaltoaster-untargohome/config.jsonc
Normal file
|
|
@ -0,0 +1,196 @@
|
|||
{
|
||||
// Debug settings, don't touch unless you know what you're doing
|
||||
"debug": {
|
||||
// Enable or disable additional debug logs
|
||||
"logs": false,
|
||||
// Force patrols to spawn in every raid (as if patrolChance was 100%)
|
||||
"spawnAlways": false,
|
||||
// Force patrols to always spawn at the start of raids
|
||||
"spawnInstantlyAlways": false
|
||||
},
|
||||
// Settings for changing how patrols and their members are generated
|
||||
"patrols": {
|
||||
// Minimum size a patrol needs to be to have a chance for an officer
|
||||
"minOfficerSize": 4,
|
||||
// Minimum size a patrol needs to be to have a chance for a second leader
|
||||
"minSecondLeaderSize": 5,
|
||||
// Chance (percentage) for a patrol to have an officer if it meets the minimum size
|
||||
"officerChance": 35,
|
||||
// Chance (percentage) for a patrol to have a second leader if it meets the minimum size
|
||||
"secondLeaderChance": 50
|
||||
},
|
||||
"checkpoints": {
|
||||
// Minimum size a checkpoint squad needs to be to have a chance for an officer
|
||||
"minOfficerSize": 3,
|
||||
// Minimum size a checkpoint squad needs to be to have a chance for a second leader
|
||||
"minSecondLeaderSize": 3,
|
||||
// Chance (percentage) for a checkpoint to have an officer if it meets the minimum size
|
||||
"officerChance": 45,
|
||||
// Chance (percentage) for a checkpoint to have a second leader if it meets the minimum size
|
||||
"secondLeaderChance": 50
|
||||
},
|
||||
// Location-specific settings. You can add more locations by copying one of the existing ones and changing the name to the map's internal name
|
||||
"locations": {
|
||||
"woods": {
|
||||
// Location-specific patrol settings
|
||||
"patrol": {
|
||||
// Enable or disable patrols on this map
|
||||
"enablePatrols": true,
|
||||
// Chance (percentage) for a patrol to spawn in a raid
|
||||
"patrolChance": 45,
|
||||
// Maximum number of patrols that can spawn in a raid. Each patrol roll is independent, increasing the overall chance to encounter a patrol and allowing multiple patrols
|
||||
"patrolAmount": 2,
|
||||
// Minimum members in a patrol
|
||||
"patrolMin": 3,
|
||||
// Maximum members in a patrol
|
||||
"patrolMax": 6,
|
||||
// Bot Zones to spawn patrols in. Picks randomly, eliminating choices for subsequent patrols until all are used, then resets
|
||||
"patrolZones": [ "ZoneRoad", "ZoneRedHouse", "ZoneClearVill" ],
|
||||
// Minimum time a patrol can spawn after raid start. Avoid setting this less than 120 to prevent issues with checkpoints
|
||||
"patrolTimeMin": 300,
|
||||
// Maximum time a patrol can spawn after raid start
|
||||
"patrolTimeMax": 1680
|
||||
},
|
||||
// Location-specific checkpoint settings
|
||||
"checkpoint": {
|
||||
// Enable start-of-raid checkpoints on this map
|
||||
"enableCheckpoints": true,
|
||||
// Amount of checkpoints that can be in raid. Each checkpoint roll is independent, increasing the overall chance to encounter a checkpoint and allowing multiple checkpoints
|
||||
"checkpointAmount": 2,
|
||||
// Collection of the different checkpoints
|
||||
"checkpointZones": [
|
||||
{
|
||||
// Bot zone for this checkpoint
|
||||
"checkpointZone": "ZoneClearVill",
|
||||
// Chance (percentage) for this checkpoint to spawn if selected
|
||||
"checkpointChance": 40,
|
||||
// Minimum members in this checkpoint
|
||||
"checkpointMin": 3,
|
||||
// Maximum members in this checkpoint
|
||||
"checkpointMax": 4,
|
||||
// Radius around the coordinates that bots will find cover points within
|
||||
"checkpointRadius": 20,
|
||||
// Coordinates for this checkpoint
|
||||
"x": -549.96,
|
||||
"y": 9.35,
|
||||
"z": -86.53
|
||||
},
|
||||
{
|
||||
"checkpointZone": "ZoneRedHouse",
|
||||
"checkpointChance": 40,
|
||||
"checkpointMin": 2,
|
||||
"checkpointMax": 4,
|
||||
"checkpointRadius": 20,
|
||||
"x": -515.460,
|
||||
"y": -1,
|
||||
"z": 290.255
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"bigmap": {
|
||||
"patrol": {
|
||||
"enablePatrols": true,
|
||||
"patrolChance": 35,
|
||||
"patrolAmount": 1,
|
||||
"patrolMin": 4,
|
||||
"patrolMax": 7,
|
||||
"patrolZones": [ "ZoneBridge" ],
|
||||
"patrolTimeMin": 420,
|
||||
"patrolTimeMax": 1200
|
||||
},
|
||||
"checkpoint": {
|
||||
"enableCheckpoints": true,
|
||||
"checkpointAmount": 2,
|
||||
"checkpointZones": [
|
||||
{
|
||||
"checkpointZone": "ZoneBridge",
|
||||
"checkpointChance": 50,
|
||||
"checkpointMin": 2,
|
||||
"checkpointMax": 5,
|
||||
"checkpointRadius": 20,
|
||||
"x": 12.23,
|
||||
"y": -0.23,
|
||||
"z": -22.53
|
||||
},
|
||||
{
|
||||
"checkpointZone": "ZoneCustoms",
|
||||
"checkpointChance": 50,
|
||||
"checkpointMin": 2,
|
||||
"checkpointMax": 3,
|
||||
"checkpointRadius": 20,
|
||||
"x": -320.48,
|
||||
"y": -0.57,
|
||||
"z": -75.92
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"interchange": {
|
||||
"patrol": {
|
||||
"enablePatrols": true,
|
||||
"patrolChance": 40,
|
||||
"patrolAmount": 2,
|
||||
"patrolMin": 3,
|
||||
"patrolMax": 6,
|
||||
"patrolZones": [ "ZonePowerStation", "ZoneTrucks" ],
|
||||
"patrolTimeMin": 300,
|
||||
"patrolTimeMax": 1600
|
||||
},
|
||||
"checkpoint": {
|
||||
"enableCheckpoints": false,
|
||||
"checkpointAmount": 1,
|
||||
"checkpointZones": [
|
||||
|
||||
]
|
||||
}
|
||||
},
|
||||
"shoreline": {
|
||||
"patrol": {
|
||||
"enablePatrols": true,
|
||||
"patrolChance": 40,
|
||||
"patrolAmount": 1,
|
||||
"patrolMin": 4,
|
||||
"patrolMax": 7,
|
||||
"patrolZones": [ "ZoneForestGasStation" ],
|
||||
"patrolTimeMin": 300,
|
||||
"patrolTimeMax": 1600
|
||||
},
|
||||
"checkpoint": {
|
||||
"enableCheckpoints": false,
|
||||
"checkpointAmount": 1,
|
||||
"checkpointZones": [
|
||||
|
||||
]
|
||||
}
|
||||
},
|
||||
"tarkovstreets": {
|
||||
"patrol": {
|
||||
"enablePatrols": true,
|
||||
"patrolChance": 40,
|
||||
"patrolAmount": 1,
|
||||
"patrolMin": 4,
|
||||
"patrolMax": 7,
|
||||
"patrolZones": [ "ZoneSW00" ],
|
||||
"patrolTimeMin": 300,
|
||||
"patrolTimeMax": 1800
|
||||
},
|
||||
"checkpoint": {
|
||||
"enableCheckpoints": true,
|
||||
"checkpointAmount": 1,
|
||||
"checkpointZones": [
|
||||
{
|
||||
"checkpointZone": "ZoneCinema",
|
||||
"checkpointChance": 50,
|
||||
"checkpointMin": 2,
|
||||
"checkpointMax": 3,
|
||||
"checkpointRadius": 20,
|
||||
"x": -170.34,
|
||||
"y": 2.11,
|
||||
"z": 358.39
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"ScavRole/UNTAR": "UNTAR"
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"nvgIsActiveChanceDayPercent": 0,
|
||||
"nvgIsActiveChanceNightPercent": 75,
|
||||
"faceShieldIsActiveChancePercent": 100,
|
||||
"lightIsActiveDayChancePercent": 40,
|
||||
"lightIsActiveNightChancePercent": 90,
|
||||
"laserIsActiveChancePercent": 75,
|
||||
"weaponSightWhitelist": {},
|
||||
"weightingAdjustmentsByBotLevel": [],
|
||||
"weightingAdjustmentsByPlayerLevel": [],
|
||||
"randomisation": [],
|
||||
"armorPlateWeighting": [],
|
||||
"blacklist": [],
|
||||
"whitelist": [],
|
||||
"weaponModLimits": {
|
||||
"scopeLimit": 2,
|
||||
"lightLaserLimit": 2
|
||||
},
|
||||
"filterPlatesByLevel": false,
|
||||
"forceOnlyArmoredRigWhenNoArmor": true,
|
||||
"forceStock": false,
|
||||
"weaponSlotIdsToMakeRequired": []
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"chancePercent": 50,
|
||||
"itemCount": {
|
||||
"max": 1000,
|
||||
"min": 100
|
||||
},
|
||||
"stackSizeWeight": {
|
||||
"5449016a4bdc2d6f028b456f": 75,
|
||||
"5696686a4bdc2da3298b456a": 15,
|
||||
"569668774bdc2da2298b4568": 25
|
||||
},
|
||||
"currencyWeight": {
|
||||
"5449016a4bdc2d6f028b456f": 75,
|
||||
"5696686a4bdc2da3298b456a": 15,
|
||||
"569668774bdc2da2298b4568": 25
|
||||
},
|
||||
"walletTplPool": [ "5783c43d2459774bbe137486", "60b0f6c058e0b0481a09ad11" ]
|
||||
}
|
||||
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"m4a1": {
|
||||
"id": "5447a9cd4bdc2dbd208b4567",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"mod_pistol_grip": ["ar_pg"],
|
||||
"mod_reciever": ["ar_receiver_lead"],
|
||||
"mod_charge": ["ar_charge"],
|
||||
"mod_magazine": ["ar_mags"],
|
||||
"mod_stock": ["ar_buffer"]
|
||||
}
|
||||
},
|
||||
"g36": {
|
||||
"id": "623063e994fc3f7b302a9696",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"mod_barrel": ["g36_barrels"],
|
||||
"mod_mount": ["g36_magwells"],
|
||||
"mod_handguard": ["g36_handguards"],
|
||||
"mod_magazine": ["g36_mags", "ar_mags"],
|
||||
"mod_stock": ["g36_stocks"],
|
||||
"mod_scope": ["g36_scopes"]
|
||||
}
|
||||
},
|
||||
"scarl black": {
|
||||
"id": "6184055050224f204c1da540",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"mod_reciever": ["scarl_blk_receivers"],
|
||||
"mod_pistol_grip": ["ar_pg"],
|
||||
"mod_magazine": ["ar_mags"],
|
||||
"mod_stock": ["scarl_blk_stocks"],
|
||||
"mod_charge": ["6181688c6c780c1e710c9b04"]
|
||||
}
|
||||
},
|
||||
"416": {
|
||||
"id": "5bb2475ed4351e00853264e3",
|
||||
"chance": 30,
|
||||
"children": {
|
||||
"416 upper": {
|
||||
"id": "5bb20d53d4351e4502010a69",
|
||||
"slots": {
|
||||
"mod_barrel": ["416 barrels"],
|
||||
"mod_handguard": ["416 handguards"],
|
||||
"mod_sight_rear": ["ar_rear_sights"],
|
||||
"mod_scope": ["scopes_mid", "sights"]
|
||||
}
|
||||
},
|
||||
"416 buffer": {
|
||||
"id": "5bb20e58d4351e00320205d7",
|
||||
"slots": {
|
||||
"mod_stock_000": ["ar_stocks", "5bb20e70d4351e0035629f8f", "5c87a07c2e2216001219d4a2"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_reciever": ["416 upper"],
|
||||
"mod_pistol_grip": ["ar_pg"],
|
||||
"mod_magazine": ["ar_mags"],
|
||||
"mod_stock": ["416 buffer"],
|
||||
"mod_charge": ["ar_charge"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ArmorVest": {
|
||||
"untar vest": {
|
||||
"id": "5ab8e4ed86f7742d8e50c7fa",
|
||||
"chance": 40,
|
||||
"slots": {
|
||||
"Soft_armor_front": ["657044e971369562b300ce9b"],
|
||||
"Soft_armor_back": ["657045741bd9beedc40b7299"],
|
||||
"Soft_armor_left": ["657045b97e80617cee095bda"],
|
||||
"soft_armor_right": ["6570460471369562b300ce9f"]
|
||||
}
|
||||
},
|
||||
"iotv fast": {
|
||||
"id": "5b44d0de86f774503d30cba8",
|
||||
"chance": 70,
|
||||
"slots": {
|
||||
"Front_plate": ["plates"],
|
||||
"Back_plate": ["plates"],
|
||||
"Left_side_plate": ["plates_side"],
|
||||
"Right_side_plate": ["plates_side"],
|
||||
"Soft_armor_front": ["6575c342efc786cd9101a5e5"],
|
||||
"Soft_armor_back": ["6575c34bc6700bd6b40e8a84"],
|
||||
"Soft_armor_left": ["6575c35bc6700bd6b40e8a88"],
|
||||
"soft_armor_right": ["6575c366c6700bd6b40e8a8c"],
|
||||
"Collar": ["6575c373dc9932aed601c5ec"],
|
||||
"Groin": ["6575c385dc9932aed601c5f0"],
|
||||
"Groin_back": ["6575c390efc786cd9101a5e9"]
|
||||
}
|
||||
},
|
||||
"interceptor": {
|
||||
"id": "64abd93857958b4249003418",
|
||||
"chance": 70,
|
||||
"slots": {
|
||||
"Front_plate": ["plates"],
|
||||
"Back_plate": ["plates"],
|
||||
"Soft_armor_front": ["6570f30b0921c914bf07964c"],
|
||||
"Soft_armor_back": ["6570f35cd67d0309980a7acb"],
|
||||
"Soft_armor_left": ["6570f3890b4ae5847f060dad"],
|
||||
"soft_armor_right": ["6570f3bb0b4ae5847f060db2"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Headwear": {
|
||||
"untar helmet": {
|
||||
"id": "5aa7d03ae5b5b00016327db5",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"helmet_top": ["654a90aff4f81a421b0a7c86"],
|
||||
"helmet_back": ["654a91068e1ce698150fd1e2"],
|
||||
"helmet_ears": ["654a9189bcc67a392b056c79"]
|
||||
}
|
||||
},
|
||||
"mich 2002": {
|
||||
"id": "5d5e9c74a4b9364855191c40",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"Helmet_top": ["657f8b94f92cd718b70154ff"],
|
||||
"Helmet_back": ["657f8b43f92cd718b70154fb"]
|
||||
}
|
||||
},
|
||||
"fast mt": {
|
||||
"id": "5a154d5cfcdbcb001a3b00da",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"Helmet_top": ["657f8ec5f4c82973640b234c"],
|
||||
"Helmet_back": ["657f8f10f4c82973640b2350"]
|
||||
}
|
||||
},
|
||||
"fast mt tan": {
|
||||
"id": "5ac8d6885acfc400180ae7b0",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"Helmet_top": ["657f8ec5f4c82973640b234c"],
|
||||
"Helmet_back": ["657f8f10f4c82973640b2350"]
|
||||
}
|
||||
},
|
||||
"airframe": {
|
||||
"id": "5c17a7ed2e2216152142459c",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"Helmet_top": ["657f9897f4c82973640b235e"],
|
||||
"Helmet_back": ["657f98fbada5fadd1f07a585"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"TacticalVest": {
|
||||
"rbav": {
|
||||
"id": "628dc750b910320f4c27a732",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"Front_plate": ["plates"],
|
||||
"Back_plate": ["plates"],
|
||||
"Left_side_plate": ["plates_side"],
|
||||
"Right_side_plate": ["plates_side"],
|
||||
"Soft_armor_front": ["6572f1ca4c8d903cc60c874e"],
|
||||
"Soft_armor_back": ["6572f1d60103b4a3270332db"],
|
||||
"Soft_armor_left": ["6572f1e10103b4a3270332df"],
|
||||
"soft_armor_right": ["6572f1edea457732140ce875"],
|
||||
"Groin": ["6572f1f7ea457732140ce879"]
|
||||
}
|
||||
},
|
||||
"mmac": {
|
||||
"id": "61bc85697113f767765c7fe7",
|
||||
"chance": 40,
|
||||
"slots": {
|
||||
"Front_plate": ["plates"],
|
||||
"Back_plate": ["plates"],
|
||||
"Left_side_plate": ["plates_side"],
|
||||
"Right_side_plate": ["plates_side"],
|
||||
"Soft_armor_front": ["6572fc809a866b80ab07eb59"],
|
||||
"Soft_armor_back": ["6572fc8c9a866b80ab07eb5d"],
|
||||
"Soft_armor_left": ["6572fc989a866b80ab07eb61"],
|
||||
"soft_armor_right": ["6572fca39a866b80ab07eb65"]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,166 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"m4a1": {
|
||||
"id": "5447a9cd4bdc2dbd208b4567",
|
||||
"chance": 20,
|
||||
"slots": {
|
||||
"mod_pistol_grip": [ "ar_pg" ],
|
||||
"mod_reciever": [ "ar_receiver" ],
|
||||
"mod_charge": [ "ar_charge" ],
|
||||
"mod_magazine": [ "ar_mags" ],
|
||||
"mod_stock": [ "ar_buffer" ]
|
||||
}
|
||||
},
|
||||
"g36": {
|
||||
"id": "623063e994fc3f7b302a9696",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"mod_barrel": [ "g36_barrels" ],
|
||||
"mod_mount": [ "g36_magwells" ],
|
||||
"mod_handguard": [ "g36_handguards" ],
|
||||
"mod_magazine": [ "g36_mags", "ar_mags" ],
|
||||
"mod_stock": [ "g36_stocks" ],
|
||||
"mod_scope": [ "g36_scopes" ]
|
||||
}
|
||||
},
|
||||
"scarl black": {
|
||||
"id": "6184055050224f204c1da540",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"mod_reciever": [ "scarl_blk_receivers" ],
|
||||
"mod_pistol_grip": [ "ar_pg" ],
|
||||
"mod_magazine": [ "ar_mags" ],
|
||||
"mod_stock": [ "scarl_blk_stocks" ],
|
||||
"mod_charge": [ "6181688c6c780c1e710c9b04" ]
|
||||
}
|
||||
},
|
||||
"416": {
|
||||
"id": "5bb2475ed4351e00853264e3",
|
||||
"chance": 30,
|
||||
"children": {
|
||||
"416 upper": {
|
||||
"id": "5bb20d53d4351e4502010a69",
|
||||
"slots": {
|
||||
"mod_barrel": [ "416 barrels" ],
|
||||
"mod_handguard": [ "416 handguards" ],
|
||||
"mod_sight_rear": [ "ar_rear_sights" ],
|
||||
"mod_scope": [ "scopes_mid", "sights" ]
|
||||
}
|
||||
},
|
||||
"416 buffer": {
|
||||
"id": "5bb20e58d4351e00320205d7",
|
||||
"slots": {
|
||||
"mod_stock_000": [ "ar_stocks", "5bb20e70d4351e0035629f8f", "5c87a07c2e2216001219d4a2" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_reciever": [ "416 upper" ],
|
||||
"mod_pistol_grip": [ "ar_pg" ],
|
||||
"mod_magazine": [ "ar_mags" ],
|
||||
"mod_stock": [ "416 buffer" ],
|
||||
"mod_charge": [ "ar_charge" ]
|
||||
}
|
||||
},
|
||||
"auga3": {
|
||||
"id": "63171672192e68c5460cebc5",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"mod_magazine": [ "aug_mags" ],
|
||||
"mod_reciever": [ "aug_recievers" ],
|
||||
"mod_charge": [ "62e7c880f68e7a0676050c7c" ]
|
||||
}
|
||||
},
|
||||
"fal": {
|
||||
"id": "5b0bbe4e5acfc40dc528a72d",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"mod_pistol_grip": [ "fal_pg" ],
|
||||
"mod_handguard": [ "fal_handguard", "fal_handguard_special" ],
|
||||
"mod_sight_rear": [ "5b0bc22d5acfc47a8607f085" ],
|
||||
"mod_stock": [ "fal_stocks", "fal_stocks_special" ],
|
||||
"mod_magazine": [ "fal_mags" ],
|
||||
"mod_barrel": [ "fal_barrels", "fal_barrels_special" ],
|
||||
"mod_reciever": [ "fal_receiver_special" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ArmorVest": {
|
||||
"untar vest": {
|
||||
"id": "5ab8e4ed86f7742d8e50c7fa",
|
||||
"chance": 20,
|
||||
"slots": {
|
||||
"Soft_armor_front": [ "657044e971369562b300ce9b" ],
|
||||
"Soft_armor_back": [ "657045741bd9beedc40b7299" ],
|
||||
"Soft_armor_left": [ "657045b97e80617cee095bda" ],
|
||||
"soft_armor_right": [ "6570460471369562b300ce9f" ]
|
||||
}
|
||||
},
|
||||
"iotv fast": {
|
||||
"id": "5b44d0de86f774503d30cba8",
|
||||
"chance": 80,
|
||||
"slots": {
|
||||
"Front_plate": [ "plates" ],
|
||||
"Back_plate": [ "plates" ],
|
||||
"Left_side_plate": [ "plates_side" ],
|
||||
"Right_side_plate": [ "plates_side" ],
|
||||
"Soft_armor_front": [ "6575c342efc786cd9101a5e5" ],
|
||||
"Soft_armor_back": [ "6575c34bc6700bd6b40e8a84" ],
|
||||
"Soft_armor_left": [ "6575c35bc6700bd6b40e8a88" ],
|
||||
"soft_armor_right": [ "6575c366c6700bd6b40e8a8c" ],
|
||||
"Collar": [ "6575c373dc9932aed601c5ec" ],
|
||||
"Groin": [ "6575c385dc9932aed601c5f0" ],
|
||||
"Groin_back": [ "6575c390efc786cd9101a5e9" ]
|
||||
}
|
||||
},
|
||||
"interceptor": {
|
||||
"id": "64abd93857958b4249003418",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"Front_plate": [ "plates" ],
|
||||
"Back_plate": [ "plates" ],
|
||||
"Soft_armor_front": [ "6570f30b0921c914bf07964c" ],
|
||||
"Soft_armor_back": [ "6570f35cd67d0309980a7acb" ],
|
||||
"Soft_armor_left": [ "6570f3890b4ae5847f060dad" ],
|
||||
"soft_armor_right": [ "6570f3bb0b4ae5847f060db2" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"TacticalVest": {
|
||||
"rbav": {
|
||||
"id": "628dc750b910320f4c27a732",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"Front_plate": [ "plates" ],
|
||||
"Back_plate": [ "plates" ],
|
||||
"Left_side_plate": [ "plates_side" ],
|
||||
"Right_side_plate": [ "plates_side" ],
|
||||
"Soft_armor_front": [ "6572f1ca4c8d903cc60c874e" ],
|
||||
"Soft_armor_back": [ "6572f1d60103b4a3270332db" ],
|
||||
"Soft_armor_left": [ "6572f1e10103b4a3270332df" ],
|
||||
"soft_armor_right": [ "6572f1edea457732140ce875" ],
|
||||
"Groin": [ "6572f1f7ea457732140ce879" ]
|
||||
}
|
||||
},
|
||||
"mmac": {
|
||||
"id": "61bc85697113f767765c7fe7",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"Front_plate": [ "plates" ],
|
||||
"Back_plate": [ "plates" ],
|
||||
"Left_side_plate": [ "plates_side" ],
|
||||
"Right_side_plate": [ "plates_side" ],
|
||||
"Soft_armor_front": [ "6572fc809a866b80ab07eb59" ],
|
||||
"Soft_armor_back": [ "6572fc8c9a866b80ab07eb5d" ],
|
||||
"Soft_armor_left": [ "6572fc989a866b80ab07eb61" ],
|
||||
"soft_armor_right": [ "6572fca39a866b80ab07eb65" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"416 barrels": {
|
||||
"416 10 barrel": {
|
||||
"id": "5c6d85e02e22165df16b81f4",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_gas_block": [ "5bb20dcad4351e3bac1212da" ]
|
||||
}
|
||||
},
|
||||
"416 11 barrel": {
|
||||
"id": "5bb20d92d4351e00853263eb",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_gas_block": [ "5bb20dcad4351e3bac1212da" ]
|
||||
}
|
||||
},
|
||||
"416 14 barrel": {
|
||||
"id": "5bb20d9cd4351e00334c9d8a",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_gas_block": [ "5bb20dcad4351e3bac1212da" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"416 handguards": {
|
||||
"416 handguard": {
|
||||
"id": "5bb20de5d4351e0035629e59",
|
||||
"slots": {
|
||||
"mod_tactical_000": [ "lasers_common" ],
|
||||
"mod_tactical_001": [ "lights" ],
|
||||
"mod_foregrip": [ "grips" ],
|
||||
"mod_sight_front": [ "ar_front_sights" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,218 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"ar_pg": {
|
||||
"ar a2": {
|
||||
"id": "55d4b9964bdc2d1d4e8b456e"
|
||||
},
|
||||
"ecs fde": {
|
||||
"id": "571659bb2459771fb2755a12"
|
||||
},
|
||||
"hk battle": {
|
||||
"id": "5bb20e18d4351e00320205d5"
|
||||
}
|
||||
},
|
||||
"ar_receiver": {
|
||||
"m4a1 receiver": {
|
||||
"id": "55d355e64bdc2d962f8b4569",
|
||||
"slots": {
|
||||
"mod_scope": [ "scopes_mid", "sights" ],
|
||||
"mod_handguard": [ "ar_handguards" ],
|
||||
"mod_barrel": [ "ar_barrels" ],
|
||||
"mod_sight_rear": [ "ar_rear_sights" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ar_barrels": {
|
||||
"ar 145 barrel": {
|
||||
"id": "55d3632e4bdc2d972f8b4569",
|
||||
"children": {
|
||||
"m203": {
|
||||
"id": "6357c98711fb55120211f7e1"
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_gas_block": [ "ar_gas_blocks" ],
|
||||
"mod_launcher": [ "m203" ]
|
||||
}
|
||||
},
|
||||
"ar 135 barrel": {
|
||||
"id": "63d3ce0446bd475bcb50f55f",
|
||||
"children": {
|
||||
"m203": {
|
||||
"id": "6357c98711fb55120211f7e1"
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_gas_block": [ "ar_gas_blocks" ],
|
||||
"mod_launcher": [ "m203" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ar_gas_blocks": {
|
||||
"m4 sight block": {
|
||||
"id": "5ae30e795acfc408fb139a0b"
|
||||
},
|
||||
"ar dd mk12": {
|
||||
"id": "56eabcd4d2720b66698b4574"
|
||||
},
|
||||
"ar rail block": {
|
||||
"id": "56ea8d2fd2720b7c698b4570",
|
||||
"slots": {
|
||||
"mod_sight_front": [ "ar_front_sights" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ar_556_muzzles": {
|
||||
"usgi a2": {
|
||||
"id": "544a38634bdc2d58388b4568"
|
||||
},
|
||||
"sf3p": {
|
||||
"id": "5c7fb51d2e2216001219ce11",
|
||||
"children": {
|
||||
"socom rc2": {
|
||||
"id": "5ea17bbc09aa976f2e7a51cd"
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_muzzle": [ "socom rc2" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ar_handguards": {
|
||||
"kac ris": {
|
||||
"id": "55d459824bdc2d892f8b4573",
|
||||
"children": {
|
||||
"kac ris lower": {
|
||||
"id": "637f57b78d137b27f70c496a",
|
||||
"slots": {
|
||||
"mod_foregrip": [ "grips" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_tactical": [ "lasers_common" ],
|
||||
"mod_tactical_2": [ "lights" ],
|
||||
"mod_tactical_003": [],
|
||||
"mod_handguard": [ "kac ris lower" ]
|
||||
}
|
||||
},
|
||||
"smr mk16 short": {
|
||||
"id": "5ea16acdfadf1d18c87b0784",
|
||||
"slots": {
|
||||
"mod_tactical_000": [ "lasers_common" ],
|
||||
"mod_sight_front": [ "ar_front_sights" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ar_charge": {
|
||||
"ar colt charge": {
|
||||
"id": "55d44fd14bdc2d962f8b456e"
|
||||
},
|
||||
"badger charge": {
|
||||
"id": "56ea7165d2720b6e518b4583"
|
||||
}
|
||||
},
|
||||
"ar_mags": {
|
||||
"stanag": {
|
||||
"id": "55d4887d4bdc2d962f8b4570"
|
||||
},
|
||||
"hk stanag": {
|
||||
"id": "5c05413a0db834001c390617"
|
||||
},
|
||||
"pmag 30": {
|
||||
"id": "5aaa5dfee5b5b000140293d3"
|
||||
}
|
||||
},
|
||||
"ar_buffer": {
|
||||
"colt buffer": {
|
||||
"id": "5649be884bdc2d79388b4577",
|
||||
"slots": {
|
||||
"mod_stock_000": [ "ar_stocks" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ar_stocks": {
|
||||
"m4ss stock": {
|
||||
"id": "55d4ae6c4bdc2d8b2f8b456e"
|
||||
},
|
||||
"sopmod stock": {
|
||||
"id": "5ae30c9a5acfc408fb139a03"
|
||||
}
|
||||
},
|
||||
"ar_front_sights": {
|
||||
"kac front sight": {
|
||||
"id": "5c17804b2e2216152006c02f"
|
||||
}
|
||||
},
|
||||
"ar_rear_sights": {
|
||||
"kac rear sight": {
|
||||
"id": "5c1780312e221602b66cc189"
|
||||
}
|
||||
},
|
||||
"ar_receiver_lead": {
|
||||
"m4a1 receiver": {
|
||||
"id": "55d355e64bdc2d962f8b4569",
|
||||
"slots": {
|
||||
"mod_scope": [ "scopes_mid", "sights" ],
|
||||
"mod_handguard": [ "ar_handguards_lead" ],
|
||||
"mod_barrel": [ "ar_barrels" ],
|
||||
"mod_sight_rear": [ "ar_rear_sights" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ar_handguards_lead": {
|
||||
"kac ris": {
|
||||
"id": "55d459824bdc2d892f8b4573",
|
||||
"slots": {
|
||||
"mod_tactical": [ "lasers_common" ],
|
||||
"mod_tactical_2": [ "lights" ]
|
||||
}
|
||||
},
|
||||
"smr mk16 short": {
|
||||
"id": "5ea16acdfadf1d18c87b0784",
|
||||
"slots": {
|
||||
"mod_tactical_000": [ "lasers_common" ],
|
||||
"mod_sight_front": [ "ar_front_sights" ],
|
||||
"mod_foregrip": [ "grips_mlok" ]
|
||||
}
|
||||
},
|
||||
"smr mk16 long": {
|
||||
"id": "5ea16ada09aa976f2e7a51be",
|
||||
"slots": {
|
||||
"mod_tactical_000": [ "lasers_common" ],
|
||||
"mod_sight_front": [ "ar_front_sights" ],
|
||||
"mod_foregrip": [ "grips_mlok" ]
|
||||
}
|
||||
},
|
||||
"dd ris2 12": {
|
||||
"id": "5c9a25172e2216000f20314e",
|
||||
"children": {
|
||||
"dd ris2 12 lower": {
|
||||
"id": "638f2003bbd47aeb9e0ff637",
|
||||
"slots": {
|
||||
"mod_foregrip": [ "grips" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_tactical_000": [ "lasers_common" ],
|
||||
"mod_tactical_002": [ "lights" ],
|
||||
"mod_sight_front": [ "ar_front_sights" ],
|
||||
"mod_handguard": [ "dd ris2 12 lower" ]
|
||||
}
|
||||
},
|
||||
"dd ris2 9 coyote": {
|
||||
"id": "55f84c3c4bdc2d5f408b4576",
|
||||
"slots": {
|
||||
"mod_tactical": [ "lasers_common" ],
|
||||
"mod_tactical002": [ "lights" ],
|
||||
"mod_sight_front": [ "ar_front_sights" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"aug_mags": {
|
||||
"aug 30 mag": {
|
||||
"id": "62e7c98b550c8218d602cbb4"
|
||||
}
|
||||
},
|
||||
"aug_mounts": {
|
||||
"a3 scope": {
|
||||
"id": "62ebd290c427473eff0baafb",
|
||||
"children": {
|
||||
"t1 mount": {
|
||||
"id": "58d39d3d86f77445bb794ae7",
|
||||
"slots": {
|
||||
"mod_scope": [ "58d399e486f77442e0016fe7" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": [ "t1 mount" ],
|
||||
"mod_tactical": [ "lasers_common", "lights" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"aug_barrels": {
|
||||
"aug 16 barrel": {
|
||||
"id": "630e39c3bd357927e4007c15",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "630f28f0cadb1fe05e06f004" ],
|
||||
"mod_foregrip": [ "634e61b0767cb15c4601a877" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"aug_recievers": {
|
||||
"auga3 reciever": {
|
||||
"id": "62e7c72df68e7a0676050c77",
|
||||
"slots": {
|
||||
"mod_barrel": [ "aug_barrels" ],
|
||||
"mod_mount": [ "aug_mounts" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"fal_pg": {
|
||||
"fal pg": {
|
||||
"id": "5b7d678a5acfc4001a5c4022"
|
||||
},
|
||||
"fal ribbed pg": {
|
||||
"id": "5b099b965acfc400186331e6"
|
||||
}
|
||||
},
|
||||
"fal_handguard": {
|
||||
"fal belgian hg": {
|
||||
"id": "5b7d671b5acfc43d82528ddd"
|
||||
}
|
||||
},
|
||||
"fal_handguard_special": {
|
||||
"fal 4rail full": {
|
||||
"id": "5b7be1ca5acfc400170e2d2f",
|
||||
"slots": {
|
||||
"mod_tactical_000": [ "lasers_common" ],
|
||||
"mod_tactical_002": [ "lights" ],
|
||||
"mod_foregrip": [ "grips" ]
|
||||
}
|
||||
},
|
||||
"fal 4rail short": {
|
||||
"id": "5b099a9d5acfc47a8607efe7",
|
||||
"slots": {
|
||||
"mod_tactical_000": [ "lasers_common" ],
|
||||
"mod_tactical_002": [ "lights" ],
|
||||
"mod_foregrip": [ "grips" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"fal_stocks": {
|
||||
"fal folding": {
|
||||
"id": "5b7d63cf5acfc4001876c8df"
|
||||
},
|
||||
"fal hump": {
|
||||
"id": "5b7d645e5acfc400170e2f90"
|
||||
}
|
||||
},
|
||||
"fal_stocks_special": {
|
||||
"fal brs": {
|
||||
"id": "5b7d64555acfc4001876c8e2"
|
||||
},
|
||||
"fal prs2": {
|
||||
"id": "5b7d63b75acfc400170e2f8a"
|
||||
}
|
||||
},
|
||||
"fal_mags": {
|
||||
"fal 20 standard": {
|
||||
"id": "5b099ac65acfc400186331e1"
|
||||
},
|
||||
"fal 30 standard": {
|
||||
"id": "5b7bef5d5acfc43bca7067a3"
|
||||
},
|
||||
"fal 30 l1a1": {
|
||||
"id": "5b7d37845acfc400170e2f87"
|
||||
}
|
||||
},
|
||||
"fal_barrels": {
|
||||
"fal 21 barrel": {
|
||||
"id": "5b7be1265acfc400161d0798",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "5b7d68af5acfc400170e30c3" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"fal_barrels_special": {
|
||||
"fal 16 barrel": {
|
||||
"id": "5b7be1125acfc4001876c0e5",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "5b099b7d5acfc400186331e4", "5b7d68af5acfc400170e30c3" ]
|
||||
}
|
||||
},
|
||||
"fal 11 barrel": {
|
||||
"id": "5b099a765acfc47a8607efe3",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "5b099b7d5acfc400186331e4", "615d8eb350224f204c1da1cf" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"fal_receiver_special": {
|
||||
"fal rail receiver": {
|
||||
"id": "5b099bb25acfc400186331e8",
|
||||
"slots": {
|
||||
"mod_scope": [ "scopes_mid", "sights" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,119 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"g36_barrels": {
|
||||
"g36 228 barrel": {
|
||||
"id": "622b379bf9cfc87d675d2de5",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_gas_block": [ "622b327b267a1b13a44abea3" ]
|
||||
}
|
||||
},
|
||||
"g36 318 barrel": {
|
||||
"id": "622b3858034a3e17ad0b81f5",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_gas_block": [ "622b327b267a1b13a44abea3" ]
|
||||
}
|
||||
},
|
||||
"g36 480 barrel": {
|
||||
"id": "622b38c56762c718e457e246",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_gas_block": [ "622b327b267a1b13a44abea3" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"g36_handguards": {
|
||||
"2 vent handguard": {
|
||||
"id": "62386b2adf47d66e835094b2",
|
||||
"children": {
|
||||
"2 vent bottom mount": {
|
||||
"id": "62444cb99f47004c781903eb",
|
||||
"slots": {
|
||||
"mod_foregrip": [ "grips" ]
|
||||
}
|
||||
},
|
||||
"2 vent side mount": {
|
||||
"id": "62444cd3674028188b052799",
|
||||
"slots": {
|
||||
"mod_tactical": [ "lights", "lasers_common" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_mount_000": [ "2 vent bottom mount" ],
|
||||
"mod_mount_001": [ "2 vent side mount" ],
|
||||
"mod_mount_002": [ "2 vent side mount" ],
|
||||
"mod_tactical": [ "622f16a1a5958f63c67f1737" ]
|
||||
}
|
||||
},
|
||||
"4 vent handguard": {
|
||||
"id": "62386b7153757417e93a4e9f",
|
||||
"children": {
|
||||
"2 vent bottom mount": {
|
||||
"id": "62444cb99f47004c781903eb",
|
||||
"slots": {
|
||||
"mod_foregrip": [ "grips" ]
|
||||
}
|
||||
},
|
||||
"2 vent side mount": {
|
||||
"id": "62444cd3674028188b052799",
|
||||
"slots": {
|
||||
"mod_tactical": [ "lights", "lasers_common" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_mount_000": [ "2 vent bottom mount" ],
|
||||
"mod_mount_001": [ "2 vent side mount" ],
|
||||
"mod_mount_002": [ "2 vent side mount" ],
|
||||
"mod_tactical": [ "622f16a1a5958f63c67f1737" ]
|
||||
}
|
||||
},
|
||||
"6 vent handguard": {
|
||||
"id": "6231654c71b5bc3baa1078e5"
|
||||
}
|
||||
},
|
||||
"g36_magwells": {
|
||||
"g36 magwell": {
|
||||
"id": "622f02437762f55aaa68ac85"
|
||||
},
|
||||
"g36 stanag magwell": {
|
||||
"id": "622f039199f4ea1a4d6c9a17"
|
||||
}
|
||||
},
|
||||
"g36_mags": {
|
||||
"g36 mag": {
|
||||
"id": "62307b7b10d2321fa8741921"
|
||||
}
|
||||
},
|
||||
"g36_stocks": {
|
||||
"g36 stock": {
|
||||
"id": "622f140da5958f63c67f1735"
|
||||
},
|
||||
"g36 kv stock": {
|
||||
"id": "622f14e899892a7f9e08f6c5"
|
||||
}
|
||||
},
|
||||
"g36_scopes": {
|
||||
"g36 sight mount": {
|
||||
"id": "622b3c081b89c677a33bcda6",
|
||||
"slots": {
|
||||
"mod_scope": [ "sights", "scopes_mid" ],
|
||||
"mod_sight_front": [ "623166e08c43374ca1567195" ],
|
||||
"mod_sight_rear": [ "6231670f0b8aa5472d060095" ],
|
||||
"mod_tactical": [ "lasers_top", "lasers_common" ]
|
||||
}
|
||||
},
|
||||
"g36 optic rail": {
|
||||
"id": "622b3d5cf9cfc87d675d2de9",
|
||||
"slots": {
|
||||
"mod_scope": [ "sights", "scopes_mid" ],
|
||||
"mod_tactical": [ "lasers_top", "lasers_common" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
"equipment": {},
|
||||
"weapons": {},
|
||||
"categories": {
|
||||
"scarl_barrels": {
|
||||
"scarl 10": {
|
||||
"id": "6183fc15d3a39d50044c13e9",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_sight_front": [ "61816fcad92c473c770215cc" ]
|
||||
}
|
||||
},
|
||||
"scarl 14": {
|
||||
"id": "6183fd911cb55961fa0fdce9",
|
||||
"slots": {
|
||||
"mod_muzzle": [ "ar_556_muzzles" ],
|
||||
"mod_sight_front": [ "61816fcad92c473c770215cc" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scar_bottom_rails": {
|
||||
"scar_bottom_rail": {
|
||||
"id": "61816df1d3a39d50044c139e",
|
||||
"slots": {
|
||||
"mod_foregrip": [ "grips" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scar_side_rails": {
|
||||
"scar_side_rail": {
|
||||
"id": "61816dfa6ef05c2ce828f1ad",
|
||||
"slots": {
|
||||
"mod_tactical_000": [ "lights" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scarl_blk_receivers": {
|
||||
"scarl_blk_receiver": {
|
||||
"id": "618405198004cc50514c3594",
|
||||
"slots": {
|
||||
"mod_scope": [ "scopes_mid", "sights" ],
|
||||
"mod_tactical_000": [ "lasers_common" ],
|
||||
"mod_mount_000": [ "scar_bottom_rails" ],
|
||||
"mod_mount_001": [ "scar_side_rails" ],
|
||||
"mod_barrel": [ "scarl_barrels" ],
|
||||
"mod_sight_rear": [ "61817865d3a39d50044c13a4" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scarl_blk_stocks": {
|
||||
"scarl_blk_stock": {
|
||||
"id": "61816734d8e3106d9806c1f3",
|
||||
"children": {
|
||||
"scarl_blk retractable": {
|
||||
"id": "618167528004cc50514c34f9",
|
||||
"children": {
|
||||
"scarl buttpad": {
|
||||
"id": "618167616ef05c2ce828f1a8"
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_stock": [ "scarl buttpad" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_stock_001": [ "scarl_blk retractable" ],
|
||||
"mod_stock_002": [ "618167441cb55961fa0fdc71" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,221 @@
|
|||
{
|
||||
"equipment": {
|
||||
|
||||
},
|
||||
"weapons": {
|
||||
|
||||
},
|
||||
"categories": {
|
||||
"scopes_mid": {
|
||||
"elcan": {
|
||||
"id": "57ac965c24597706be5f975c",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
},
|
||||
"tan elcan": {
|
||||
"id": "57aca93d2459771f2c7e26db",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
},
|
||||
"ta51 mount": {
|
||||
"id": "59db7eed86f77461f8380365",
|
||||
"chance": 20,
|
||||
"children": {},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_acog"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"scopes_long": {
|
||||
"geissele mount": {
|
||||
"id": "618b9643526131765025ab35",
|
||||
"chance": 10,
|
||||
"children": {
|
||||
"ring cap": {
|
||||
"id": "618b9671d14d6d5ab879c5ea",
|
||||
"chance": 10,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_30"],
|
||||
"mod_mount": ["618b9671d14d6d5ab879c5ea"]
|
||||
}
|
||||
},
|
||||
"nightforce mount": {
|
||||
"id": "5aa66a9be5b5b0214e506e89",
|
||||
"chance": 10,
|
||||
"children": {},
|
||||
"slots": {
|
||||
"mod_scope": ["optics_34"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"optics_acog":{
|
||||
"acog" : {
|
||||
"id": "5c05293e0db83400232fff80",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"tan acog": {
|
||||
"id": "5c052a900db834001a66acbd",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"weird acog": {
|
||||
"id": "59db7e1086f77448be30ddf3",
|
||||
"chance": 15,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"optics_30": {
|
||||
"vudu": {
|
||||
"id": "5b3b99475acfc432ff4dcbee",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"leupold": {
|
||||
"id": "5a37cb10c4a282329a73b4e7",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"march": {
|
||||
"id": "57c5ac0824597754771e88a9",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"optics_34": {
|
||||
"atacr": {
|
||||
"id": "5aa66be6e5b5b0214e506e97",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
},
|
||||
"pmii": {
|
||||
"id": "61714eec290d254f5e6b2ffc",
|
||||
"chance": 20,
|
||||
"children": {}
|
||||
}
|
||||
},
|
||||
"sights": {
|
||||
"eotech 553": {
|
||||
"id": "570fd6c2d2720bc6458b457f",
|
||||
"chance": 50,
|
||||
"children": {}
|
||||
},
|
||||
"xps32": {
|
||||
"id": "584924ec24597768f12ae244",
|
||||
"chance": 50,
|
||||
"children": {}
|
||||
},
|
||||
"exps3": {
|
||||
"id": "558022b54bdc2dac148b458d",
|
||||
"chance": 40,
|
||||
"children": {}
|
||||
},
|
||||
"compm4 mount": {
|
||||
"id": "5c7d55f52e221644f31bff6a",
|
||||
"chance": 60,
|
||||
"children": {
|
||||
"compm4": {
|
||||
"id": "5c7d55de2e221644f31bff68",
|
||||
"chance": 60,
|
||||
"children": {},
|
||||
"slots": {}
|
||||
},
|
||||
"compm4 riser": {
|
||||
"id": "5c7d560b2e22160bc12c6139",
|
||||
"chance": 30,
|
||||
"children": {},
|
||||
"slots": {
|
||||
"mod_scope": ["compm4"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"slots": {
|
||||
"mod_scope": ["compm4 riser"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"compact_sights": {
|
||||
|
||||
},
|
||||
"grips": {
|
||||
"kac grip": {
|
||||
"id": "5c87ca002e221600114cb150",
|
||||
"chance": 40,
|
||||
"children": {}
|
||||
},
|
||||
"magpul afg": {
|
||||
"id": "588226d124597767ad33f787",
|
||||
"chance": 40,
|
||||
"children": {}
|
||||
},
|
||||
"tango bgv": {
|
||||
"id": "661e52e29c8b4dadef008577"
|
||||
},
|
||||
"magpul rvg": {
|
||||
"id": "59fc48e086f77463b1118392"
|
||||
}
|
||||
},
|
||||
"grips_mlok": {
|
||||
"magpul afg mlok tan": {
|
||||
"id": "57cffcd624597763133760c5"
|
||||
},
|
||||
"dd vert mlok tan": {
|
||||
"id": "651a8e529829226ceb67c319"
|
||||
},
|
||||
"bcm mlok blk": {
|
||||
"id": "665d5d9e338229cfd6078da1"
|
||||
}
|
||||
},
|
||||
"lasers_common": {
|
||||
"peq15": {
|
||||
"id": "544909bb4bdc2d6f028b4577"
|
||||
},
|
||||
"la5b": {
|
||||
"id": "5c06595c0db834001a66af6c"
|
||||
}
|
||||
},
|
||||
"lasers_top": {
|
||||
"mawl": {
|
||||
"id": "644a3df63b0b6f03e101e065"
|
||||
}
|
||||
},
|
||||
"lasers_side": {
|
||||
|
||||
},
|
||||
"lights": {
|
||||
"wmx": {
|
||||
"id": "626becf9582c3e319310b837"
|
||||
},
|
||||
"25mm": {
|
||||
"id": "57d17e212459775a1179a0f5",
|
||||
"slots": {
|
||||
"mod_flashlight": ["lights_25"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"lights_25" : {
|
||||
"ultrafire wf": {
|
||||
"id": "57d17c5e2459775a5c57d17d"
|
||||
}
|
||||
},
|
||||
"plates_side": {
|
||||
"sapi side": {
|
||||
"id": "6557458f83942d705f0c4962"
|
||||
},
|
||||
"esapi side": {
|
||||
"id": "64afdb577bb3bfe8fe03fd1d"
|
||||
}
|
||||
},
|
||||
"plates": {
|
||||
"sapi": {
|
||||
"id": "655746010177119f4a097ff7"
|
||||
},
|
||||
"esapi": {
|
||||
"id": "64afdcb83efdfea28601d041"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
{
|
||||
"equipment": {
|
||||
"FirstPrimaryWeapon": {
|
||||
"m4a1": {
|
||||
"id": "5447a9cd4bdc2dbd208b4567",
|
||||
"chance": 50,
|
||||
"slots": {
|
||||
"mod_pistol_grip": [ "ar_pg" ],
|
||||
"mod_reciever": [ "ar_receiver" ],
|
||||
"mod_charge": [ "ar_charge" ],
|
||||
"mod_magazine": [ "ar_mags" ],
|
||||
"mod_stock": [ "ar_buffer" ]
|
||||
}
|
||||
},
|
||||
"g36": {
|
||||
"id": "623063e994fc3f7b302a9696",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"mod_barrel": [ "g36_barrels" ],
|
||||
"mod_mount": [ "g36_magwells" ],
|
||||
"mod_handguard": [ "g36_handguards" ],
|
||||
"mod_magazine": [ "g36_mags", "ar_mags" ],
|
||||
"mod_stock": [ "g36_stocks" ],
|
||||
"mod_scope": [ "g36_scopes" ]
|
||||
}
|
||||
},
|
||||
"auga3": {
|
||||
"id": "63171672192e68c5460cebc5",
|
||||
"chance": 30,
|
||||
"slots": {
|
||||
"mod_magazine": [ "aug_mags" ],
|
||||
"mod_reciever": [ "aug_recievers" ],
|
||||
"mod_charge": [ "62e7c880f68e7a0676050c7c" ]
|
||||
}
|
||||
},
|
||||
"fal": {
|
||||
"id": "5b0bbe4e5acfc40dc528a72d",
|
||||
"chance": 20,
|
||||
"slots": {
|
||||
"mod_pistol_grip": [ "fal_pg" ],
|
||||
"mod_handguard": [ "fal_handguard" ],
|
||||
"mod_sight_rear": [ "5b0bc22d5acfc47a8607f085" ],
|
||||
"mod_stock": [ "fal_stocks" ],
|
||||
"mod_magazine": [ "fal_mags" ],
|
||||
"mod_barrel": [ "fal_barrels" ],
|
||||
"mod_reciever": [ "5b7d6c105acfc40015109a5f" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ArmorVest": {
|
||||
"untar vest": {
|
||||
"id": "5ab8e4ed86f7742d8e50c7fa",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"Soft_armor_front": [ "657044e971369562b300ce9b" ],
|
||||
"Soft_armor_back": [ "657045741bd9beedc40b7299" ],
|
||||
"Soft_armor_left": [ "657045b97e80617cee095bda" ],
|
||||
"soft_armor_right": [ "6570460471369562b300ce9f" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Headwear": {
|
||||
"untar helmet": {
|
||||
"id": "5aa7d03ae5b5b00016327db5",
|
||||
"chance": 100,
|
||||
"slots": {
|
||||
"helmet_top": [ "654a90aff4f81a421b0a7c86" ],
|
||||
"helmet_back": [ "654a91068e1ce698150fd1e2" ],
|
||||
"helmet_ears": [ "654a9189bcc67a392b056c79" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"weapons": {
|
||||
"5447a9cd4bdc2dbd208b4567": {
|
||||
"mod_pistol_grip": [ "ar_pg" ],
|
||||
"mod_reciever": [ "ar_receiver" ],
|
||||
"mod_charge": [ "ar_charge" ],
|
||||
"mod_magazine": [ "ar_mags" ],
|
||||
"mod_stock": [ "ar_buffer" ]
|
||||
}
|
||||
},
|
||||
"categories": {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
{
|
||||
// String, the bot type
|
||||
"type": "untar",
|
||||
// Int, amount of preset loadouts that will be generated by SPT to equip bots of this type
|
||||
"presetBatch": 15,
|
||||
// Bool
|
||||
"isBoss": false,
|
||||
// Bool, SPT tries to generate unique names for each bot of this type. Make sure you have enough names in your type for this to work properly.
|
||||
"mustHaveUniqueName": true,
|
||||
// Record: DefaultDurability
|
||||
"durability": {
|
||||
"armor": {
|
||||
"maxDelta": 15,
|
||||
"minDelta": 0,
|
||||
"minLimitPercent": 15,
|
||||
"lowestMaxPercent": 70,
|
||||
"highestMaxPercent": 100
|
||||
},
|
||||
"weapon": {
|
||||
"highestMax": 100,
|
||||
"lowestMax": 85,
|
||||
"maxDelta": 15,
|
||||
"minDelta": 0,
|
||||
"minLimitPercent": 15
|
||||
}
|
||||
},
|
||||
// Dictionary<MongoID (Item IDs), double>
|
||||
"itemSpawnLimits": {
|
||||
"5734758f24597738025ee253": 1
|
||||
},
|
||||
// Record: EquipmentFilters
|
||||
"equipment": {
|
||||
"faceShieldIsActiveChancePercent": 100,
|
||||
"forceOnlyArmoredRigWhenNoArmor": true,
|
||||
"forceStock": true,
|
||||
"laserIsActiveChancePercent": 75,
|
||||
"lightIsActiveDayChancePercent": 25,
|
||||
"lightIsActiveNightChancePercent": 75,
|
||||
"nvgIsActiveChanceDayPercent": 10,
|
||||
"nvgIsActiveChanceNightPercent": 90
|
||||
},
|
||||
"currencyStackSize": {
|
||||
// Roubles
|
||||
"5449016a4bdc2d6f028b456f": {
|
||||
// Amount: weighted chance (higher means more likely to be picked)
|
||||
"10000": 51,
|
||||
"15000": 28,
|
||||
"20000": 13,
|
||||
"25000": 8,
|
||||
"30000": 3,
|
||||
"5000": 200
|
||||
},
|
||||
// Dollars
|
||||
"5696686a4bdc2da3298b456a": {
|
||||
"15": 5,
|
||||
"50": 10,
|
||||
"300": 2,
|
||||
"500": 1
|
||||
},
|
||||
// Euros
|
||||
"569668774bdc2da2298b4568": {
|
||||
"15": 5,
|
||||
"50": 10,
|
||||
"300": 2,
|
||||
"500": 1
|
||||
},
|
||||
// GP Coin
|
||||
"5d235b4d86f7742e017bc88a": {
|
||||
"0": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
"lastName": [
|
||||
"John",
|
||||
"Alex",
|
||||
"Alexi",
|
||||
"Gus",
|
||||
"Matthew",
|
||||
"Michael",
|
||||
"Steven",
|
||||
"Zellig",
|
||||
"Tony",
|
||||
"Robert",
|
||||
"David",
|
||||
"Richard",
|
||||
"Joseph",
|
||||
"Charles",
|
||||
"Moretti",
|
||||
"Larsson",
|
||||
"Nowak",
|
||||
"Gallagher",
|
||||
"Martin",
|
||||
"Fernández",
|
||||
"Virtanen",
|
||||
"Olsen",
|
||||
"De Wilde",
|
||||
"Schneider",
|
||||
"Romano",
|
||||
"Kowalczyk",
|
||||
"Lindqvist",
|
||||
"Petrova",
|
||||
"O’Connor",
|
||||
"Popescu",
|
||||
"Lefèvre",
|
||||
"Sørensen",
|
||||
"Kovač",
|
||||
"Müller",
|
||||
"Eriksson",
|
||||
"Novak",
|
||||
"Ruiz",
|
||||
"Horváthová",
|
||||
"Bauer",
|
||||
"Smith",
|
||||
"Johnson",
|
||||
"Williams",
|
||||
"Brown",
|
||||
"Jones",
|
||||
"Taylor",
|
||||
"Davis",
|
||||
"Miller",
|
||||
"Wilson",
|
||||
"Moore",
|
||||
"Clark",
|
||||
"Hall",
|
||||
"Allen",
|
||||
"Young",
|
||||
"King",
|
||||
"Scott",
|
||||
"Hill",
|
||||
"Green",
|
||||
"Baker",
|
||||
"Adams",
|
||||
"Mitchell",
|
||||
"Campbell",
|
||||
"Reed",
|
||||
"Carter",
|
||||
"Morgan"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"appearance": {
|
||||
"feet": {
|
||||
"660436487502eca33a08cac8": 1,
|
||||
"5d1f592286f7743f8362bcdb": 1,
|
||||
"68b062090c10f1000000002c": 1,
|
||||
"689f9db40c10f10000000002": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
BIN
SPT/user/mods/tacticaltoaster-untargohome/untargh-server.dll
Normal file
BIN
SPT/user/mods/tacticaltoaster-untargohome/untargh-server.dll
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue