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
['weed'] = {
['name'] = 'weed',
['label'] = 'Marijuana',
['weight'] = 10,
['type'] = 'item',
['image'] = 'weed.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Hey brother, I think this is so natural...'
},
['weed_packaged'] = {
['name'] = 'weed_packaged',
['label'] = 'Packaged Marijuana',
['weight'] = 10,
['type'] = 'item',
['image'] = 'weed_packaged.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?'
},
['cocaine_cut'] = {
['name'] = 'cocaine_cut',
['label'] = 'Cut Cocaine',
['weight'] = 10,
['type'] = 'item',
['image'] = 'cocaine_cut.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'The powder of love, who would have thought it would be so addictive?'
},
['cocaine_packaged'] = {
['name'] = 'cocaine_packaged',
['label'] = 'Packaged Cocaine',
['weight'] = 10,
['type'] = 'item',
['image'] = 'cocaine_packaged.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'] = 'Methamphetamine',
['weight'] = 10,
['type'] = 'item',
['image'] = 'meth.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = "Oh shit brother, that's hard, very hard."
},
['chemicals'] = {
['name'] = 'chemicals',
['label'] = 'Chemicals',
['weight'] = 10,
['type'] = 'item',
['image'] = 'chemicals.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = "Oh shit brother, that's hard, very hard."
},
['meth_packaged'] = {
['name'] = 'meth_packaged',
['label'] = 'Packaged Methamphetamine',
['weight'] = 10,
['type'] = 'item',
['image'] = 'meth_packaged.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = "Oh shit brother, that's hard, very hard."
},
['sorted_money'] = {
['name'] = 'sorted_money',
['label'] = 'Sorted Money',
['weight'] = 10,
['type'] = 'item',
['image'] = 'sorted_money.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = "Oh shit brother, that's hard, very hard."
},
['package_money'] = {
['name'] = 'package_money',
['label'] = 'Packaged Money',
['weight'] = 10,
['type'] = 'item',
['image'] = 'package_money.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = "Oh shit brother, that's hard, very hard."
},
['police_stormram'] = {
['name'] = 'police_stormram',
['label'] = 'Stormram',
['weight'] = 18000,
['type'] = 'item',
['image'] = 'police_stormram.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['rare'] = 'legendary', -- epic, legendary, common
['description'] = 'A nice tool to break into doors'
},
['lockpick'] = {
['name'] = 'lockpick',
['label'] = 'Lockpick',
['weight'] = 300,
['type'] = 'item',
['image'] = 'lockpick.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['description'] = 'Very useful if you lose your keys a lot.. or if you want to use it for something else...'
},esx_inventory
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('weed', 'Marijuana', 10),
('weed_packaged', 'Packaged Marijuana', 10),
('cocaine', 'Cocaine', 10),
('cocaine_cut', 'Cut Cocaine', 10),
('cocaine_packaged', 'Packaged Cocaine', 10),
('meth', 'Methamphetamine', 10),
('chemicals', 'Chemicals', 10),
('meth_packaged', 'Packaged Methamphetamine', 10),
('sorted_money', 'Sorted Money', 10),
('package_money', 'Packaged Money', 10),
('police_stormram', 'Stormram', 18000),
('lockpick', 'Lockpick', 300)
;qb-inventory
["weed"] = { name = "weed", label = "Marijuana", weight = 10, type = "item", image = "weed.png", unique = false, useable = true, shouldClose = true, description = "Hey brother, I think this is so natural..." },
["weed_packaged"] = { name = "weed_packaged", label = "Packaged Marijuana", weight = 10, type = "item", image = "weed_packaged.png", unique = false, useable = true, shouldClose = true, 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, description = "The powder of love, who would have thought it would be so addictive?" },
["cocaine_cut"] = { name = "cocaine_cut", label = "Cut Cocaine", weight = 10, type = "item", image = "cocaine_cut.png", unique = false, useable = true, shouldClose = true, description = "The powder of love, who would have thought it would be so addictive?" },
["cocaine_packaged"] = { name = "cocaine_packaged", label = "Packaged Cocaine", weight = 10, type = "item", image = "cocaine_packaged.png", unique = false, useable = true, shouldClose = true, description = "The powder of love, who would have thought it would be so addictive?" },
["meth"] = { name = "meth", label = "Methamphetamine", weight = 10, type = "item", image = "meth.png", unique = false, useable = true, shouldClose = true, description = "Oh shit brother, that's hard, very hard." },
["chemicals"] = { name = "chemicals", label = "Chemicals", weight = 10, type = "item", image = "chemicals.png", unique = false, useable = true, shouldClose = true, description = "Oh shit brother, that's hard, very hard." },
["meth_packaged"] = { name = "meth_packaged", label = "Packaged Methamphetamine", weight = 10, type = "item", image = "meth_packaged.png", unique = false, useable = true, shouldClose = true, description = "Oh shit brother, that's hard, very hard." },
["sorted_money"] = { name = "sorted_money", label = "Sorted Money", weight = 10, type = "item", image = "sorted_money.png", unique = false, useable = true, shouldClose = true, description = "Oh shit brother, that's hard, very hard." },
["package_money"] = { name = "package_money", label = "Packaged Money", weight = 10, type = "item", image = "package_money.png", unique = false, useable = true, shouldClose = true, description = "Oh shit brother, that's hard, very hard." },
["police_stormram"] = { name = "police_stormram", label = "Stormram", weight = 18000, type = "item", image = "police_stormram.png", unique = false, useable = true, shouldClose = true, rare = "legendary", description = "A nice tool to break into doors" },
["lockpick"] = { name = "lockpick", label = "Lockpick", weight = 300, type = "item", image = "lockpick.png", unique = false, useable = true, shouldClose = true, description = "Very useful if you lose your keys a lot.. or if you want to use it for something else..." },ox_inventory
["weed"] = {
label = "Marijuana",
weight = 10,
stack = true,
},
["weed_packaged"] = {
label = "Packaged Marijuana",
weight = 10,
stack = true,
},
["cocaine"] = {
label = "Cocaine",
weight = 10,
stack = true,
},
["cocaine_cut"] = {
label = "Cut Cocaine",
weight = 10,
stack = true,
},
["cocaine_packaged"] = {
label = "Packaged Cocaine",
weight = 10,
stack = true,
},
["meth"] = {
label = "Methamphetamine",
weight = 10,
stack = true,
},
["chemicals"] = {
label = "Chemicals",
weight = 10,
stack = true,
},
["meth_packaged"] = {
label = "Packaged Methamphetamine",
weight = 10,
stack = true,
},
["sorted_money"] = {
label = "Sorted Money",
weight = 10,
stack = true,
},
["package_money"] = {
label = "Packaged Money",
weight = 10,
stack = true,
},
["police_stormram"] = {
label = "Stormram",
weight = 18000,
stack = true,
},
["lockpick"] = {
label = "Lockpick",
weight = 300,
stack = true,
},