how can i add resources to anti itens, like "dont need wood to craft things that use wood "
im newbie not a dev or anything about programing be patience with me xD
how can i add resources to anti itens, like "dont need wood to craft things that use wood "
im newbie not a dev or anything about programing be patience with me xD
add the item to the config
oxide/config/AntiItems.json
just copypaste an entry and add your own
don't forget to put commas where they belong or it will not even load
commas belong at the end of each entry (except the last, but you can add it there too)
I tried this but its not working?
{
"Settings": {
"Resources": {
"metal.fragments": 1000,
"wood": 1000,
"stones": 1000,
"metal.refined": 1000,
"cctv.camera": 1000,
"targeting.computer": 1000
},
"Components": {
"gears": 1000,
"metalpipe": 1000,
"metalspring": 1000,
"propanetank": 1000,
"riflebody": 1000,
"roadsigns": 1000,
"rope": 1000,
"semibody": 1000,
"sewingkit": 1000,
"sheetmetal": 1000,
"smgbody": 1000,
"tarp": 1000,
"techparts": 1000
},
"Refresh Time": 120.0,
"Use Active Item Refreshing": true
}
} all entries must be added to components, like this:
{
"Settings": {
"Components": {
"metal.fragments": 1000,
"wood": 1000,
"stones": 1000,
"metal.refined": 1000,
"cctv.camera": 1000,
"targeting.computer": 1000,
"gears": 1000,
"metalpipe": 1000,
"metalspring": 1000,
"propanetank": 1000,
"riflebody": 1000,
"roadsigns": 1000,
"rope": 1000,
"semibody": 1000,
"sewingkit": 1000,
"sheetmetal": 1000,
"smgbody": 1000,
"tarp": 1000,
"techparts": 1000
},
"Refresh Time": 120.0,
"Use Active Item Refreshing": true
}
}