SpicyTasty DOCS
WEBSTOREDISCORDYOUTUBE
  • 🚨READ ME
    • 🌶️Welcome to SpicyTasty
  • 📚SCRIPTS
    • RADIO
      • Installation
        • STEP 1
        • STEP 2
        • STEP 3
        • STEP 4
          • ORIGEN inventory
          • AK47 inventory
          • PS inventory
          • CORE inventory
          • OX inventory
          • LJ inventory
          • QB inventory
          • TGIANN inventory
          • CODEM inventory
          • QS inventory
        • STEP 5
        • STEP 6 (OPTIONAL)
      • Common Errors
      • Snippets
        • Exports
        • pma-voice
        • Add to Store/Shop
      • Config
    • NOTIFY
      • Installation
        • STEP 1
        • STEP 2
        • STEP 3
        • STEP 4
          • ESX
          • QBCore
      • Exports
      • Job Banners
  • BLINDBOX
    • Installation
  • 🫒PROPS
    • BUBUS
      • Installation
        • STEP 1
        • STEP 2
        • STEP 3
        • STEP 4
        • Step 5
          • stUsableProps
          • stBlindBox
    • BOTS
      • Installation
        • STEP 1
        • STEP 2
        • STEP 3
        • STEP 4
        • Step 5
          • stUsableProps
          • stBlindBox
Powered by GitBook
On this page
  • STEP 1
  • STEP 2

Was this helpful?

  1. SCRIPTS
  2. RADIO
  3. Installation
  4. STEP 4

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,
},
PreviousCORE inventoryNextLJ inventory

Last updated 6 months ago

Was this helpful?

📚