OX inventory
STEP 1
GO TO ox_inventory/data/items.lua, search and delete this
['radio'] = {
label = 'Radio',
weight = 1000,
stack = false,
allowArmed = true
},
STEP 2
GO TO ox_inventory/data/items.lua and add the items
["radio"] = {
label = "Radio",
weight = 1000,
stack = false,
close = true,
consume = 0,
server = {
export = 'stRadio.use_radio',
},
},
["radio_server"] = {
label = "Radio Server",
weight = 1000,
stack = false,
close = true,
consume = 0,
server = {
export = 'stRadio.use_radioserver',
},
},
["hack_chip"] = {
label = "Hack chip",
weight = 1000,
stack = false,
close = true,
consume = 0,
server = {
export = 'stRadio.use_hackchip',
},
},
["radio_jammer"] = {
label = "Radio Jammer",
weight = 1000,
stack = false,
close = true,
consume = 0,
server = {
export = 'stRadio.use_radiojammer',
},
},
["radio_powerbank"] = {
label = "Portable battery",
weight = 1000,
stack = false,
close = true,
consume = 0,
server = {
export = 'stRadio.use_portbat',
},
},
["radio_red"] = {
label = "Color frame red",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_blue"] = {
label = "Color frame blue",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_purple"] = {
label = "Color frame purple",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_pink"] = {
label = "Color frame pink",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_lightblue"] = {
label = "Color frame lightblue",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_orange"] = {
label = "Color frame orange",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_yellow"] = {
label = "Color frame yellow",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_green"] = {
label = "Color frame green",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_white"] = {
label = "Color frame white",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_grey"] = {
label = "Color frame grey",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["bat_low"] = {
label = "Cheap battery",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["bat_medium"] = {
label = "Common battery",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["bat_high"] = {
label = "Premium battery",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["chip_5g"] = {
label = "5G Chip",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["chip_ghost"] = {
label = "Ghost Chip",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["chip_antihack"] = {
label = "Antihack Chip",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["mic_walkie"] = {
label = "Talkie Shoulder Microphone",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_monitor"] = {
label = "Hospital monitor",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_server_bat"] = {
label = "Car battery",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_cables"] = {
label = "Radio Jammer",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["radio_tool"] = {
label = "Radio tools",
weight = 1000,
stack = false,
close = true,
consume = 0,
server = {
export = 'stRadio.use_repairRadio',
},
},
["radio_broken"] = {
label = "Broken radio",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
["chip_waterproof"] = {
label = "Waterproof radio",
weight = 1000,
stack = false,
close = false,
consume = 0,
},
Last updated