Items

In this section, we’ll guide you through configuring the Kartik-Gangs 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 Gang items in your inventory system.


Items

For ox_inventory, you need to add the following configuration in your ox_inventory/data/items.lua file.

	["gang_flag"] = {
		label = "Gang Flag",
		weight = 10,
		stack = false,
		close = true,
		description = "Gang Flag.",
		client = {
			export = "kartik-gangs.PlaceFlag",
		}
	},

	["gang_spray"] = {
		label = "Gang Spray",
		weight = 10,
		stack = false,
		close = true,
		description = "Gang Spray.",
		client = {
			export = "kartik-gangs.openSprayMenu",
		}
	},

	["gang_spray_remover"] = {
		label = "Gang Spray Remover",
		weight = 10,
		stack = false,
		close = true,
		description = "Gang Spray Remover.",
		client = {
			export = "kartik-gangs.RemoveGraffiti",
		}
	},


Last updated