Quasar Store Logo

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

['boltcutter'] = { ['name'] = 'boltcutter', ['label'] = 'Boltcutter', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'boltcutter.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy-duty cutters for chains and padlocks.' }, ['thermalcharge'] = { ['name'] = 'thermalcharge', ['label'] = 'Thermal Charge', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'thermalcharge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Shaped charge for breaching reinforced boxes.' }, ['gold'] = { ['name'] = 'gold', ['label'] = 'Gold Bar', ['weight'] = 1500, ['type'] = 'item', ['image'] = 'gold.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A solid bar of stolen gold.' }, ['diamond'] = { ['name'] = 'diamond', ['label'] = 'Diamond', ['weight'] = 100, ['type'] = 'item', ['image'] = 'diamond.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A flawless cut diamond.' }, ['watch'] = { ['name'] = 'watch', ['label'] = 'Luxury Watch', ['weight'] = 200, ['type'] = 'item', ['image'] = 'watch.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An expensive timepiece.' }, ['necklace'] = { ['name'] = 'necklace', ['label'] = 'Necklace', ['weight'] = 150, ['type'] = 'item', ['image'] = 'necklace.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A glittering necklace.' }, ['ring'] = { ['name'] = 'ring', ['label'] = 'Ring', ['weight'] = 100, ['type'] = 'item', ['image'] = 'ring.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A diamond-studded ring.' },
esx_inventory

INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('boltcutter', 'Boltcutter', 2, 0, 1), ('thermalcharge', 'Thermal Charge', 1, 0, 1), ('gold', 'Gold Bar', 2, 0, 1), ('diamond', 'Diamond', 1, 0, 1), ('watch', 'Luxury Watch', 1, 0, 1), ('necklace', 'Necklace', 1, 0, 1), ('ring', 'Ring', 1, 0, 1) ;
qb-inventory

ox_inventory