Items

Setup items for ESX framework

If you are on ESX framework and NOT using ox_inventory, please insert following in your database:

INSERT INTO `items` (name, label) VALUES
  ('camera', 'Camera'),
  ('tablet', 'Tablet'),
  ('hackdevice', 'Hack Device')
;

ox_inventory

If you are using ox_inventory, add this to your ox_inventory > data > items.lua:

['camera'] = {
	label = 'Camera',
	weight = 80,
	stack = false
},
['tablet'] = {
	label = 'Tablet',
	weight = 50,
	stack = false
},
['hackdevice'] = {
	label = 'Hack Device',
	weight = 20,
	stack = false
}

You can change item names in config.lua

Items images:

Last updated