- Server version
- 3.5.5
- Game client version
- 0.13.0.22617
- Client log file
- codepaste.sp-tarkov.com/?605a2…Y8jttkPe7QmvWfJL3eTna3Zw8
- BepInEx log file
- codepaste.sp-tarkov.com/?4dad3…ZDBnm4gfcEgasr2cqZY3Fm8Cq
- Server log file
- codepaste.sp-tarkov.com/?ad2f7…S3fNT8GxwZf17MPasQYEL5Qaw
- Have you read the FAQ?
- Yes
- Where did you download your game from?
- https://www.escapefromtarkov.com/ for the game, https://hub.sp-tarkov.com/ for SPT
- List of used mods
- ServerValueModifier
StartScript v2.0.1 by SaruShinobi
I am trying to follow this tutorial to mark a TOZ-106 20ga bolt-action shotgun as "Found In Raid": FIR Tutorial. I use Item Finder to get the ID for the TOZ, which is 5a38e6bac4a2826c6e06d79b. I open my profile file, 8ada63061d540a6209205ec1.json. This is the profile that is loaded when I launch SPT. I have SPT closed (no server, no launcher, default Tarkov closed as well). In this json file, I search for the TOZ using its ID, and find it. See the code below.
{
"_id": "a1f4622569916a7fb2381e11",
"_tpl": "5a38e6bac4a2826c6e06d79b",
"parentId": "e7c011308088abaf99742944",
"slotId": "main",
"location": {
"x": 0,
"y": 1,
"r": "Horizontal",
"isSearched": true
},
"upd": {
"Repairable": {
"MaxDurability": 100,
"Durability": 100
},
"FireMode": {
"FireMode": "single"
}
}
},
Display More
I then add the line to make it "Found In Raid".
{
"_id": "a1f4622569916a7fb2381e11",
"_tpl": "5a38e6bac4a2826c6e06d79b",
"parentId": "e7c011308088abaf99742944",
"slotId": "main",
"location": {
"x": 0,
"y": 1,
"r": "Horizontal",
"isSearched": true
},
"upd": {
"SpawnedInSession": true,
"Repairable": {
"MaxDurability": 100,
"Durability": 100
},
"FireMode": {
"FireMode": "single"
}
}
},
Display More
I save the changed .json file and launch SPT. When I load this profile, the TOZ is still not Found In Raid.
For pictures of my SPT profile in the launcher and the TOZ in my inventory, see this Imgur link.
I've modified the profile json, saved it, then launched SPT. To check that the modifications were actually saving and being loaded, I changed the durability of the TOZ. I am able to change the durablity, but changing it to Found In Raid (SpawnedInSession) doesn't work. What am I doing wrong?