Inventory Items
Inventory items code for the most popular inventories/frameworks
Old qb-inventory
['disabler'] = {
['name'] = 'disabler',
['label'] = 'Disabler',
['weight'] = 0,
['type'] = 'item',
['image'] = 'usb_device.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Handy tool to disable transmitters'
},
['grinder'] = {
['name'] = 'grinder',
['label'] = 'Angle Grinder',
['weight'] = 0,
['type'] = 'item',
['image'] = 'grinder.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Useful for grinding locks in half'
},
['tacticalscuba'] = {
['name'] = 'tacticalscuba',
['label'] = 'Tactical Scuba Gear',
['weight'] = 0,
['type'] = 'item',
['image'] = 'tacticalscuba.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Effective in tactical underwater insertion operations'
},
New qb-inventory
disabler = { name = 'disabler', label = 'Disabler', weight = 0, type = 'item', image = 'usb_device.png', unique = false, useable = false, shouldClose = true, description = 'Handy tool to disable transmitters' },
grinder = { name = 'grinder', label = 'Angle Grinder', weight = 0, type = 'item', image = 'grinder.png', unique = false, useable = false, shouldClose = true, description = 'Useful for grinding locks in half' },
tacticalscuba = { name = 'tacticalscuba', label = 'Tactical Scuba Gear', weight = 0, type = 'item', image = 'tacticalscuba.png', unique = false, useable = false, shouldClose = true, description = 'Effective in tactical underwater insertion operations' },ox-inventory
['disabler'] = {
label = 'Disabler',
weight = 0,
description = 'Handy tool to disable transmitters',
stack = true,
close = true,
},
['grinder'] = {
label = 'Angle Grinder',
weight = 0,
description = 'Useful for grinding locks in half',
stack = true,
close = true,
},
['tacticalscuba'] = {
label = 'Tactical Scuba Gear',
weight = 0,
description = 'Effective in tactical underwater insertion operations',
stack = true,
close = true,
},
Last updated