-- QBCore & Extra stuff
ensure ox_lib -- Start this before your Framework Core !
ensure qb-core
ensure [qb]
ensure [standalone]
ensure [voice]
ensure [defaultmaps]
ensure qb-nitro -- Start the Nitro Script here !
qb-inventory :
ox_inventory :
Note : Place images for other Inventories Accordingly !
-- qb-inventory code
-- Paste the code in qb-core/shared/items.lua
['emptynitrous'] = {
['name'] = 'emptynitrous',
['label'] = 'Empty Bottle',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'emptynitrous.png',
['unique'] = true,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Empty bottle of nitrous. Go to the Mechanic to refill your bottle',
},
-- ps-inventory code
-- Paste the code in qb-core/shared/items.lua
['emptynitrous'] = {
['name'] = 'emptynitrous',
['label'] = 'Empty Bottle',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'emptynitrous.png',
['unique'] = true,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Empty bottle of nitrous. Go to Mechanic to Refill your Bottle',
['decay'] = 3.0,
['delete'] = true,
},
-- ox_inventory code
-- Paste the code in ox_inventory/data/items.lua
["emptynitrous"] = {
label = "Empty Nitrous Bottle",
weight = 1000,
stack = true,
close = true,
description = "Empty Nitrous Bottle, Go Refill it",
client = {
image = "emptynitrous.png",
},
},
-- qs-inventory code
-- Paste the code in qs-inventory/shared/items/lua
["emptynitrous"] = {
["name"] = "emptynitrous",
["label"] = "Empty Bottle",
["weight"] = 1000,
["type"] = "item",
["image"] = "emptynitrous.png",
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Empty bottle of nitrous. Go to the Mechanic to refill your bottle",
},
Path: resources[standalone]\interact-sound\client\html\sounds