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
['mechanic_tablet'] = {
    ['name'] = 'mechanic_tablet',
    ['label'] = 'Mechanic Tablet',
    ['weight'] = 1000,
    ['type'] = 'item',
    ['image'] = 'mechanic_tablet.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Digital tablet for managing your mechanic shop'
},

['repairkit'] = {
    ['name'] = 'repairkit',
    ['label'] = 'Repair Kit',
    ['weight'] = 500,
    ['type'] = 'item',
    ['image'] = 'repairkit.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A kit containing tools to repair vehicle body damage'
},

['rope'] = {
    ['name'] = 'rope',
    ['label'] = 'Rope',
    ['weight'] = 300,
    ['type'] = 'item',
    ['image'] = 'rope.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A sturdy rope for flipping vehicles'
},

['sponge'] = {
    ['name'] = 'sponge',
    ['label'] = 'Sponge',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'sponge.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A sponge for washing vehicles'
}
esx_inventory
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
    ('mechanic_tablet', 'Mechanic Tablet', 1, 0, 1),
    ('repairkit', 'Repair Kit', 500, 0, 1),
    ('rope', 'Rope', 300, 0, 1),
    ('sponge', 'Sponge', 100, 0, 1)
;
qb-inventory
["mechanic_tablet"]        = { name = "mechanic_tablet", label = "Mechanic Tablet", weight = 1000, type = "item", image = "mechanic_tablet.png", unique = false, useable = true, shouldClose = true, description = "Digital tablet for managing your mechanic shop" },
["repairkit"]              = { name = "repairkit", label = "Repair Kit", weight = 500, type = "item", image = "repairkit.png", unique = false, useable = true, shouldClose = true, description = "A kit containing tools to repair vehicle body damage" },
["rope"]                   = { name = "rope", label = "Rope", weight = 300, type = "item", image = "rope.png", unique = false, useable = true, shouldClose = true, description = "A sturdy rope for flipping vehicles" },
["sponge"]                 = { name = "sponge", label = "Sponge", weight = 100, type = "item", image = "sponge.png", unique = false, useable = true, shouldClose = true, description = "A sponge for washing vehicles" },
ox_inventory
['mechanic_tablet'] = {
    label = 'Mechanic Tablet',
    weight = 1000,
    stack = false,
    close = true,
    description = 'Digital tablet for managing your mechanic shop',
    server = {
        export = 'qs-mechanic-creator.useTablet'
    }
},

['repairkit'] = {
    label = 'Repair Kit',
    weight = 500,
    stack = true,
    close = true,
    description = 'A kit containing tools to fully repair vehicles'
},

['rope'] = {
    label = 'Rope',
    weight = 300,
    stack = true,
    close = true,
    description = 'A sturdy rope for towing vehicles'
},

['sponge'] = {
    label = 'Sponge',
    weight = 100,
    stack = true,
    close = true,
    description = 'A sponge for washing vehicles'
}