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
['royal_flush_whiskey'] = {
    ['name'] = 'royal_flush_whiskey',
    ['label'] = 'Royal Flush Whiskey',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'royal_flush_whiskey.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A premium whiskey for high rollers.'
},

['high_roller_vodka'] = {
    ['name'] = 'high_roller_vodka',
    ['label'] = 'High Roller Vodka',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'high_roller_vodka.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'The choice of those who play the game big.'
},

['lucky_7s_tequila'] = {
    ['name'] = 'lucky_7s_tequila',
    ['label'] = 'Lucky 7’s Tequila',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'lucky_7s_tequila.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A smooth tequila with a touch of luck.'
},

['blackjack_bourbon'] = {
    ['name'] = 'blackjack_bourbon',
    ['label'] = 'Blackjack Bourbon',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'blackjack_bourbon.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A bold bourbon perfect for any high stakes game.'
},

['gold_watch'] = {
    ['name'] = 'gold_watch',
    ['label'] = 'Gold Watch',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'gold_watch.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A luxurious gold watch that symbolizes wealth and status.'
},

['diamond_ring'] = {
    ['name'] = 'diamond_ring',
    ['label'] = 'Diamond Ring',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'diamond_ring.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A stunning diamond ring for the elite.'
},

['luxury_cigar'] = {
    ['name'] = 'luxury_cigar',
    ['label'] = 'Luxury Cigar Box',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'luxury_cigar.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A collection of the finest cigars for the connoisseur.'
},

['expensive_champagne'] = {
    ['name'] = 'expensive_champagne',
    ['label'] = 'Expensive Champagne',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'expensive_champagne.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A bottle of exquisite champagne for celebrations.'
},
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
["royal_flush_whiskey"]  = { name = "royal_flush_whiskey", label = "Royal Flush Whiskey", weight = 10, type = "item", image = "royal_flush_whiskey.png", unique = false, useable = true, shouldClose = true, description = "A premium whiskey for high rollers." },
["high_roller_vodka"]    = { name = "high_roller_vodka", label = "High Roller Vodka", weight = 10, type = "item", image = "high_roller_vodka.png", unique = false, useable = true, shouldClose = true, description = "The choice of those who play the game big." },
["lucky_7s_tequila"]     = { name = "lucky_7s_tequila", label = "Lucky 7’s Tequila", weight = 10, type = "item", image = "lucky_7s_tequila.png", unique = false, useable = true, shouldClose = true, description = "A smooth tequila with a touch of luck." },
["blackjack_bourbon"]    = { name = "blackjack_bourbon", label = "Blackjack Bourbon", weight = 10, type = "item", image = "blackjack_bourbon.png", unique = false, useable = true, shouldClose = true, description = "A bold bourbon perfect for any high stakes game." },
["gold_watch"]           = { name = "gold_watch", label = "Gold Watch", weight = 10, type = "item", image = "gold_watch.png", unique = false, useable = true, shouldClose = true, description = "A luxurious gold watch that symbolizes wealth and status." },
["diamond_ring"]         = { name = "diamond_ring", label = "Diamond Ring", weight = 10, type = "item", image = "diamond_ring.png", unique = false, useable = true, shouldClose = true, description = "A stunning diamond ring for the elite." },
["luxury_cigar"]         = { name = "luxury_cigar", label = "Luxury Cigar Box", weight = 10, type = "item", image = "luxury_cigar.png", unique = false, useable = true, shouldClose = true, description = "A collection of the finest cigars for the connoisseur." },
["expensive_champagne"]  = { name = "expensive_champagne", label = "Expensive Champagne", weight = 10, type = "item", image = "expensive_champagne.png", unique = false, useable = true, shouldClose = true, description = "A bottle of exquisite champagne for celebrations." },
ox_inventory
['royal_flush_whiskey'] = {
    label = 'Royal Flush Whiskey',
    weight = 10,
    stack = true,
},

['high_roller_vodka'] = {
    label = 'High Roller Vodka',
    weight = 10,
    stack = true,
},

['lucky_7s_tequila'] = {
    label = 'Lucky 7’s Tequila',
    weight = 10,
    stack = true,
},

['blackjack_bourbon'] = {
    label = 'Blackjack Bourbon',
    weight = 10,
    stack = true,
},

['gold_watch'] = {
    label = 'Gold Watch',
    weight = 10,
    stack = true,
},

['diamond_ring'] = {
    label = 'Diamond Ring',
    weight = 10,
    stack = true,
},

['luxury_cigar'] = {
    label = 'Luxury Cigar Box',
    weight = 10,
    stack = true,
},

['expensive_champagne'] = {
    label = 'Expensive Champagne',
    weight = 10,
    stack = true,
},