Item

ox_inventory

Add this to ox_inventory/data/items.lua:

	['dispatch_tablet'] = {
		label = 'Dispatch Tablet',
		weight = 1000,
		client = { 
			image = 'dispatch_tablet.png',
			export = 'frkn-dispatch.useDispatch'
		 },
	},

qb-core

Add this to qb-core/shared/items.lua:

    dispatch_tablet = {name = 'dispatch_tablet',label = 'Dispatch Tablet',weight = 1000,type = 'item',image = 'dispatch_tablet.png',unique = true,useable = true,shouldClose = true,description = 'Dispatch Tablet.',},

Last updated