Items
In this section, we’ll guide you through configuring the Kartik-Boosting items for three different inventory systems: ox_inventory and qb-inventory. Below are the item configurations you’ll need to add to your server to enable the Boosting items in your inventory system.
Lua For Itmes
For ox_inventory, you need to add the following configuration in your ox_inventory/data/items.lua
file.
['door'] = {
label = 'Vehicle Door',
description = '',
weight = 500,
stack = false,
},
['hood'] = {
label = 'Vehicle Hood',
description = '',
weight = 500,
stack = false,
},
['trunk'] = {
label = 'Vehicle Trunk',
description = '',
weight = 500,
stack = false,
},
['wheel'] = {
label = 'Vehicle Wheel',
description = '',
weight = 500,
stack = false,
},
['battery'] = {
label = 'Vehicle Battery',
description = '',
weight = 500,
stack = false,
},
['exhaust'] = {
label = 'Vehicle Exhaust',
description = '',
weight = 500,
stack = false,
},
['saw'] = {
label = 'Saw',
description = '',
weight = 500,
stack = false,
},
Lua For Weapons
For ox_inventory, you need to add the following configuration in your ox_inventory/data/items.lua
file.
['WEAPON_DIGISCANNER'] = {
label = 'Digital Scanner',
weight = 125,
durability = 0.1,
},
Last updated