Power Plant Job


Dependencies

Ensure that you have the dependencies below downloaded and ensured in your resources.

Installation

Ox Inventory

Add the following in ox_inventory > data > items.lua

['kevin_technicianbag'] = {
    label = 'Technician Bag',
    weight = 5000,
    stack = false,
    close = true,
    description = "Bag containing technician tools",
},
['kevin_pipewrench'] = {
    label = 'Pipe Wrench',
    weight = 1000,
    stack = false,
    close = true,
    description = "Heavy duty pipe wrench",
},

Qb | Ps Inventory

Add the following in qb-core > shared > items.lua

kevin_technicianbag                     = { name = 'kevin_technicianbag', label = 'Technician Bag', weight = 5000, type = 'item', image = 'kevin_technicianbag.png', unique = true, useable = true, shouldClose = true, description = 'Bag containing technician tools' },
    kevin_pipewrench                        = { name = 'kevin_pipewrench', label = 'Pipe Wrench', weight = 1000, type = 'item', image = 'kevin_pipewrench.png', unique = true, useable = true, shouldClose = true, description = 'Heavy duty pipe wrench' },

Last updated