🏆Items
📦 Item Configuration
You need to add the following items to your server for the script to function correctly.
Items Image
QBCore Items
Add these lines to your qb-core/shared/items.lua:
['cargo_tablet'] = { name = 'cargo_tablet', label = 'Heist Tablet', weight = 200, type = 'item', image = 'cargo_tablet.png', unique = false, useable = true, shouldClose = true, description = 'A tablet used to access the dark web cargo network.' },
['drone_control'] = { name = 'drone_control', label = 'Surveillance Drone', weight = 1000, type = 'item', image = 'drone_control.png', unique = true, useable = true, shouldClose = true, description = 'Remote control for a high-tech heist drone.' },
['parachute_heist'] = { name = 'parachute_heist', label = 'Heist Parachute', weight = 1000, type = 'item', image = 'parachute.png', unique = false, useable = true, shouldClose = true, description = 'Essential for a safe exit from the plane.' },OX Inventory Items
Add these lines to your ox_inventory/data/items.lua:
['cargo_tablet'] = {
label = 'Heist Tablet',
weight = 200,
stack = false,
close = true,
description = 'A tablet used to access the dark web cargo network.'
},
['drone_control'] = {
label = 'Surveillance Drone',
weight = 1000,
stack = false,
close = true,
description = 'Remote control for a high-tech heist drone.'
},
['parachute_heist'] = {
label = 'Heist Parachute',
weight = 1000,
stack = true,
close = true,
description = 'Essential for a safe exit from the plane.'
},Last updated