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
["camera"] = {
    ["name"] = "camera",
    ["label"] = "Camera",
    ["weight"] = 100,
    ["type"] = "item",
    ["image"] = "camera.png",
    ["unique"] = true,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "A small and sweet casting."
},

["photo"] = {
    ["name"] = "photo",
    ["label"] = "Photo",
    ["weight"] = 1,
    ["type"] = "item",
    ["image"] = "photo.png",
    ["unique"] = true,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "A small and sweet casting."
},

["camera_module"] = {
    ["name"] = "camera_module",
    ["label"] = "Camera module",
    ["weight"] = 20,
    ["type"] = "item",
    ["image"] = "camera_module.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "A small and sweet casting."
},
    
["broken_camera"] = {
    ["name"] = "broken_camera",
    ["label"] = "Broken Camera",
    ["weight"] = 100,
    ["type"] = "item",
    ["image"] = "broken_camera.png",
    ["unique"] = true,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "A small and sweet casting."
},
qb-inventory
['camera'] = { ['name'] = 'camera', ['label'] = 'Camera', ['weight'] = 100, ['type'] = 'item', ['image'] = 'camera.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small and sweet casting.' },
['photo'] = { ['name'] = 'photo', ['label'] = 'Photo', ['weight'] = 1, ['type'] = 'item', ['image'] = 'photo.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small and sweet casting.' },
['camera_module'] = { ['name'] = 'camera_module', ['label'] = 'Camera Module', ['weight'] = 20, ['type'] = 'item', ['image'] = 'camera_module.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small and sweet casting.' },
['broken_camera'] = { ['name'] = 'broken_camera', ['label'] = 'Broken Camera', ['weight'] = 100, ['type'] = 'item', ['image'] = 'broken_camera.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small and sweet casting.' },
ox_inventory
["photo"] = {
    label = "Photo",
    weight = 1,
    stack = false,
    close = false,
    consume = 0,
    client = {
        export = 'qs-camera.usePhoto',
    },
},

["camera"] = {
    label = "Camera",
    weight = 1,
    stack = false,
    close = true,
    description = nil
},

["broken_camera"] = {
    label = "Broken Camera",
    weight = 1,
    stack = false,
    close = true,
    description = nil
},

["camera_module"] = {
    label = "Camera module",
    weight = 1,
    stack = false,
    close = true,
    description = nil
},