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_white-widow'] = {
['name'] = 'weed_white-widow',
['label'] = 'White Widow',
['weight'] = 250,
['type'] = 'item',
['image'] = 'weed_white-widow.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A high-quality White Widow strain.'
},
['weed_skunk'] = {
['name'] = 'weed_skunk',
['label'] = 'Skunk',
['weight'] = 250,
['type'] = 'item',
['image'] = 'weed_skunk.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A classic and potent Skunk strain.'
},
['weed_purple-haze'] = {
['name'] = 'weed_purple-haze',
['label'] = 'Purple Haze',
['weight'] = 250,
['type'] = 'item',
['image'] = 'weed_purple-haze.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A psychedelic Purple Haze strain.'
},
['weed_og-kush'] = {
['name'] = 'weed_og-kush',
['label'] = 'OG Kush',
['weight'] = 250,
['type'] = 'item',
['image'] = 'weed_og-kush.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A strong and relaxing OG Kush strain.'
},
['weed_amnesia'] = {
['name'] = 'weed_amnesia',
['label'] = 'Amnesia',
['weight'] = 250,
['type'] = 'item',
['image'] = 'weed_amnesia.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A powerful Amnesia strain known for its effects.'
},
['weed_white-widow_seed'] = {
['name'] = 'weed_white-widow_seed',
['label'] = 'White Widow Seed',
['weight'] = 100,
['type'] = 'item',
['image'] = 'weed_white-widow_seed.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A seed to grow the White Widow strain.'
},
['weed_skunk_seed'] = {
['name'] = 'weed_skunk_seed',
['label'] = 'Skunk Seed',
['weight'] = 100,
['type'] = 'item',
['image'] = 'weed_skunk_seed.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A seed to grow the Skunk strain.'
},
['weed_purple-haze_seed'] = {
['name'] = 'weed_purple-haze_seed',
['label'] = 'Purple Haze Seed',
['weight'] = 100,
['type'] = 'item',
['image'] = 'weed_purple-haze_seed.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A seed to grow the Purple Haze strain.'
},
['weed_og-kush_seed'] = {
['name'] = 'weed_og-kush_seed',
['label'] = 'OG Kush Seed',
['weight'] = 100,
['type'] = 'item',
['image'] = 'weed_og-kush_seed.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A seed to grow the OG Kush strain.'
},
['weed_amnesia_seed'] = {
['name'] = 'weed_amnesia_seed',
['label'] = 'Amnesia Seed',
['weight'] = 100,
['type'] = 'item',
['image'] = 'weed_amnesia_seed.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A seed to grow the Amnesia strain.'
},
esx_inventory
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('weed_white-widow', 'White Widow', 1, 0, 1),
('weed_skunk', 'Skunk', 1, 0, 1),
('weed_purple-haze', 'Purple Haze', 1, 0, 1),
('weed_og-kush', 'OG Kush', 1, 0, 1),
('weed_amnesia', 'Amnesia', 1, 0, 1),
('weed_white-widow_seed', 'White Widow Seed', 1, 0, 1),
('weed_skunk_seed', 'Skunk Seed', 1, 0, 1),
('weed_purple-haze_seed', 'Purple Haze Seed', 1, 0, 1),
('weed_og-kush_seed', 'OG Kush Seed', 1, 0, 1),
('weed_amnesia_seed', 'Amnesia Seed', 1, 0, 1)
;qb-inventory
["weed_white-widow"] = { name = "weed_white-widow", label = "White Widow", weight = 250, type = "item", image = "weed_white-widow.png", unique = false, useable = false, shouldClose = true, description = "A high-quality White Widow strain." },
["weed_skunk"] = { name = "weed_skunk", label = "Skunk", weight = 250, type = "item", image = "weed_skunk.png", unique = false, useable = false, shouldClose = true, description = "A classic and potent Skunk strain." },
["weed_purple-haze"] = { name = "weed_purple-haze", label = "Purple Haze", weight = 250, type = "item", image = "weed_purple-haze.png", unique = false, useable = false, shouldClose = true, description = "A psychedelic Purple Haze strain." },
["weed_og-kush"] = { name = "weed_og-kush", label = "OG Kush", weight = 250, type = "item", image = "weed_og-kush.png", unique = false, useable = false, shouldClose = true, description = "A strong and relaxing OG Kush strain." },
["weed_amnesia"] = { name = "weed_amnesia", label = "Amnesia", weight = 250, type = "item", image = "weed_amnesia.png", unique = false, useable = false, shouldClose = true, description = "A powerful Amnesia strain known for its effects." },
["weed_white-widow_seed"] = { name = "weed_white-widow_seed", label = "White Widow Seed", weight = 100, type = "item", image = "weed_white-widow_seed.png", unique = false, useable = false, shouldClose = true, description = "A seed to grow the White Widow strain." },
["weed_skunk_seed"] = { name = "weed_skunk_seed", label = "Skunk Seed", weight = 100, type = "item", image = "weed_skunk_seed.png", unique = false, useable = false, shouldClose = true, description = "A seed to grow the Skunk strain." },
["weed_purple-haze_seed"] = { name = "weed_purple-haze_seed", label = "Purple Haze Seed", weight = 100, type = "item", image = "weed_purple-haze_seed.png", unique = false, useable = false, shouldClose = true, description = "A seed to grow the Purple Haze strain." },
["weed_og-kush_seed"] = { name = "weed_og-kush_seed", label = "OG Kush Seed", weight = 100, type = "item", image = "weed_og-kush_seed.png", unique = false, useable = false, shouldClose = true, description = "A seed to grow the OG Kush strain." },
["weed_amnesia_seed"] = { name = "weed_amnesia_seed", label = "Amnesia Seed", weight = 100, type = "item", image = "weed_amnesia_seed.png", unique = false, useable = false, shouldClose = true, description = "A seed to grow the Amnesia strain." },ox_inventory
['weed_white-widow'] = {
label = 'White Widow',
weight = 1,
stack = true,
close = true,
},
['weed_skunk'] = {
label = 'Skunk',
weight = 1,
stack = true,
close = true,
},
['weed_purple-haze'] = {
label = 'Purple Haze',
weight = 1,
stack = true,
close = true,
},
['weed_og-kush'] = {
label = 'OG Kush',
weight = 1,
stack = true,
close = true,
},
['weed_amnesia'] = {
label = 'Amnesia',
weight = 1,
stack = true,
close = true,
},
['weed_white-widow_seed'] = {
label = 'White Widow Seed',
weight = 1,
stack = true,
close = true,
},
['weed_skunk_seed'] = {
label = 'Skunk Seed',
weight = 1,
stack = true,
close = true,
},
['weed_purple-haze_seed'] = {
label = 'Purple Haze Seed',
weight = 1,
stack = true,
close = true,
},
['weed_og-kush_seed'] = {
label = 'OG Kush Seed',
weight = 1,
stack = true,
close = true,
},
['weed_amnesia_seed'] = {
label = 'Amnesia Seed',
weight = 1,
stack = true,
close = true,
},