I am trying to configure my custom bots to have custom loot but it doesn't seem to work.
My custom loot settings.
"GlobalSettings": {
"allowDuplicates": false,
"corpseTypePerBotReSpawnProfile": true,
"Include_DM_Crates": false,
"Show_Skins_For_All_Items": false
And
"BotReSpawn-zombie": {
"enabled": true,
"lootTable": "zombie",
"maxItems": 2,
"minItems": 2,
"gunsWithAmmo": false,
"noGuns": true,
"MaxBps": 0,
"WaterPreFillPercent": 20,
"ClearContainerFirst": true
Now in the custom loot file zombie.json, I want zombies only to drop components
},
"Component": {
"probability": 10,
"allowBlueprints": true
},
And some components are like this
"rope": {
"probability": 10,
"minStack": 1,
"maxStack": 1
},
"semibody": {
"probability": 10,
"minStack": 1,
"maxStack": 1
},
"sewingkit": {
"probability": 10,
"minStack": 1,
"maxStack": 1,
"blueprintChancePercent": 0
},
"sheetmetal": {
"probability": 10,
"minStack": 1,
"maxStack": 1
},
"smgbody": {
"probability": 3,
"minStack": 1,
"maxStack": 1
},
Then, default-CustomProfiles.json
"Death": {
"Spawn_Hackable_Death_Crate_Percent": 0,
"Death_Crate_CustomLoot_Profile": "zombie",
"Death_Crate_LockDuration": 10,
"Corpse_Duration": 1,
"Weapon_Drop_Percent": 0,
"Min_Weapon_Drop_Condition_Percent": 50,
"Max_Weapon_Drop_Condition_Percent": 100,
"Wipe_Main_Percent": 0,
"Wipe_Belt_Percent": 100,
"Wipe_Clothing_Percent": 100,
"Allow_Rust_Loot_Percent": 100,
"Respawn_Timer": 1,
"RustRewardsValue": 0.0
Why does my bots spawn with no loot, inventories all empty? What have I missed?