Mute or change Craftbot audio
Backup Files
Before making any changes to any file make a back up and rename the file.
If the game fails to load and no bugs in your edit can be found simply delete the edited file and restore the back up file.
If the game still refuses to run or crashes delete to file and run File Validation on Steam to download a fresh new one.
Otherwise reinstall.
But all of that shouldn't be needed if done carefully.
Muting the Craftbot
On Steam go to yuor 'Local Files' and find the file : craftbots.json
Located in : ..\Scrap Mechanic\Data\Effects\Database\EffectSets
The following example removes the Craftbots IDle chatter by deleting the next section :
"Craftbot - Idle":
{
"effectList":
[
{
"type": "audio",
"name": "event:/char/npc/bots/utility/craftinbot/cb_idle",
"offset": { "x": 0.0, "y": 0.0, "z": 0.0 },
"delay": 0.0
}
]
},
Make sure you don't leave two commas. ,,
Changing Craftbot audio
To change an audio file simply replace it.
Thsi example shows how to use the Refinerybot Finished audio for the Craftbot Finsihed Audio
Copy this Line from the Refinerybot Fisnished section
"name": "event:/char/npc/bots/utility/refinery/refinery_use_end",
And paste it over to the Craftbot Fisnished section
From this..
"Craftbot - Finish":
{
"effectList":
[
{
"type": "particle",
"name": "p_craftbot_done01",
"offset": { "x": 0.0, "y": 0.001, "z": 0.0 },
"direction": { "x": 0.0, "y": 1.0, "z": 0.0 },
"attached": true,
"delay": 0.0
},
{
"type": "audio",
"name": "event:/char/npc/bots/utility/craftinbot/cb_craft_finished",
"offset": { "x": 0.0, "y": 0.0, "z": 0.0 },
"delay": 0.0
}
]
},
to this ..
"Craftbot - Finish":
{
"effectList":
[
{
"type": "particle",
"name": "p_craftbot_done01",
"offset": { "x": 0.0, "y": 0.001, "z": 0.0 },
"direction": { "x": 0.0, "y": 1.0, "z": 0.0 },
"attached": true,
"delay": 0.0
},
{
"type": "audio",
"name": "event:/char/npc/bots/utility/refinery/refinery_use_end",
"offset": { "x": 0.0, "y": 0.0, "z": 0.0 },
"delay": 0.0
}
]
},
Make sure there is a comma at the end of the line or not to many :)
This guide was created by its original author on the Steam Community. Are you the author and want it removed? Request removal.