[quote=“pisskop, post:84, topic:12858”]not take them out no. their ids will always exist.
To ‘take them out’ youd have to also override the item’s unique id and make them into … well, whatever. Be it turn them into bees or chunks of meat or single frozen tear drops lamenting their lose.
overwriting their ids will change their displayed name and properties so that while the item’s ids exist, its akin to taking the soul and personality out of one person and putting it into another’s body.[/quote]
I’m aware of this method, however it is a bit of a monumental task to replace every article of clothing in the game, putting together the blacklist was time consuming enough.
I have been experimenting with makeshift vehicle parts, so far I have completed a makeshift alternator and I’m considering which other vehicle systems would be feasible to bodge.
[spoiler]
[code]
[
{
“id”: “makeshift_alternator”,
“copy-from”: “vehicle_alternator”,
“type”: “vehicle_part”,
“name”: “makeshift alternator”,
"//": “30A @12VDC ~ 1HP drain @ 48% effficiency”,
“item”: “makeshift_alternator”,
“difficulty”: 1,
“durability”: 120,
“power”: -2,
“epower”: 160,
“damage_modifier”: 80,
“breaks_into”: [
{ “item”: “copper”, “count”: [ 2, 5 ] }
],
“extend”: { “flags”: [ “FOLDABLE”, “TOOL_SCREWDRIVER” ] }
},
{
“id”: “makeshift_alternator”,
“copy-from”: “vehicle_alternator”,
“type”: “GENERIC”,
“name”: “makeshift alternator”,
“description”: “A home made alternator that is little more than a spool of copper wire, that a magnet passes near.”,
“weight”: 40,
“volume”: 3,
“price”: 90
},
{
“type” : “recipe”,
“result”: “makeshift_alternator”,
“category”: “CC_OTHER”,
“subcategory”: “CSC_OTHER_PARTS”,
“skill_used”: “fabrication”,
“difficulty”: 3,
“time”: 1000,
“reversible”: true,
“autolearn”: true,
“qualities”:[
{“id”:“CUT”,“level”:1}
],
“tools”: [
],
“components”: [
[
[ “rag”, 1 ],
[ “felt_patch”, 1 ],
[ “duct_tape”, 50 ],
[ “string_6”, 2 ],
[ “sinew”, 50 ],
[ “thread”, 50 ],
[ “yarn”, 50 ],
[ “plant_fibre”, 50 ],
[ “withered”, 1 ]
],
[
[ “copper”, 20 ]
]
]
}
][/code][/spoiler]
Pastebin with the blacklist if anyone would like it: http://pastebin.com/sLvbKTTM
I’m also trying to define a new type of vehicle part, hint: It involves tinder as a fuel type
But that’s another headache for another day
Additionally, is there an output log for json errors? Game stopped showing errors during load for some reason.
Seems to be an issue