Items

QBInventory – shared/items.lua

pirate_tablet = {
    name = 'pirate_tablet',
    label = 'Heist Tablet',
    weight = 200,
    type = 'item',
    image = 'pirate_tablet.png',
    unique = false,
    useable = true,
    shouldClose = true,
},

compass = {
    name = 'compass',
    label = 'Compass',
    weight = 100,
    type = 'item',
    image = 'compass.png',
    unique = false,
    useable = true,
    shouldClose = true,
},

OX Inventory – data/items.lua

['pirate_tablet'] = {
    label = 'Heist Tablet',
    weight = 200,
    stack = true,
    close = true,
    consume = 0,
},

['compass'] = {
    label = 'Compass',
    weight = 100,
    stack = true,
    close = true,
    consume = 0,
},

Last updated