Items

Inventory Item Configuration

Update your inventory configuration by adding the following lines for the Port Heist Tablet.

QBCore Items

Add this line to qb-core/shared/items.lua:

Lua

['port_tablet'] = { name = 'port_tablet', label = 'Port Heist Tablet', weight = 500, type = 'item', image = 'port_tablet.png', unique = true, useable = true, shouldClose = true, description = 'A rugged tablet used to hack port authority systems and manage cargo contracts.' },

OX Inventory Items

Add this to ox_inventory/data/items.lua:

Lua

['port_tablet'] = {
    label = 'Port Heist Tablet',
    weight = 500,
    stack = false,
    close = true,
    description = 'A rugged tablet used to hack port authority systems and manage cargo contracts.'
},

Last updated