Inventory Items
This section includes the complete item list for the script, ready to be integrated into the most popular inventory systems. Each item is properly configured with its name, label, and parameters to ensure full compatibility and seamless functionality within your server’s inventory setup.
qs-inventory
["flare_airdrop"] = {
["name"] = "flare_airdrop",
["label"] = "Flare Airdrop",
["weight"] = 200,
["type"] = "item",
["image"] = "flare_airdrop.png",
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "With this I can call a plane to get weapons? Find out in the next episode!"
},
["cannabis"] = {
["name"] = "cannabis",
["label"] = "Cannabis",
["weight"] = 10,
["type"] = "item",
["image"] = "cannabis.png",
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Hey brother, I think this is so natural..."
},
["cocaine"] = {
["name"] = "cocaine",
["label"] = "Cocaine",
["weight"] = 10,
["type"] = "item",
["image"] = "cocaine.png",
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "The powder of love, who would have thought it would be so addictive?"
},
["meth"] = {
["name"] = "meth",
["label"] = "Meth",
["weight"] = 10,
["type"] = "item",
["image"] = "meth.png",
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Oh shit brother, that's hard, very hard."
},esx_inventory
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('flare_airdrop', 'Airdrop Flare', 1),
('cannabis', 'Weed', 1),
('cocaine', 'Cocaine', 1),
('meth', 'Meth', 1)
;qb-inventory
['flare_airdrop'] = {['name'] = 'flare_airdrop', ['label'] = 'Flare Airdrop', ['weight'] = 200, ['type'] = 'item', ['image'] = 'flare_airdrop.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'With this I can call a plane to get weapons? Find out in the next episode!'},
['cannabis'] = {['name'] = 'cannabis', ['label'] = 'Cannabis', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cannabis.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Hey brother, I think this is so natural...'},
['cocaine'] = {['name'] = 'cocaine', ['label'] = 'Cocaine', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cocaine.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The powder of love, who would have thought it would be so addictive?'},
['meth'] = {['name'] = 'meth', ['label'] = 'Meth', ['weight'] = 10, ['type'] = 'item', ['image'] = 'meth.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Oh shit brother, thats hard, very hard.'},