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