Items
In this section, we’ll guide you through configuring the Kartik-Contracts 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 Contracts items in your inventory system.
Items
For ox_inventory, you need to add the following configuration in your ox_inventory/data/items.lua file.
["bounty_body"] = {
label = "Bounty Body",
weight = 10,
stack = false,
close = true,
description = "Bounty Body",
},
For qb-inventory, add the following configurations in your qb-core/shared/items.lua file.
bounty_body= {
name = 'bounty_body',
label = 'Bounty Body',
weight = 500,
type = 'item',
image = 'bounty_body.png',
unique = true,
shouldClose = true,
description = '',
},Last updated