How to create items

File Location: ox_inventory/data/items.lua

Image Should Be placed in: ox_inventory/web/images

['fakeplate'] = {
	label = "Fake Plate",
	weight = 1500,
	client = {
		event = "op-garages:useFakePlate",
	}
},

['fakeplate_remover'] = {
	label = "Original Plate",
	weight = 1500,
	client = {
		event = "op-garages:removeFakePlate",
	}
},

['car_contract'] = {
	label = "Car Contract",
	weight = 1500,
	client = {
		event = "op-garages:carContractUse",
	}
},

Last updated