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
('solarpanel', 'Solar Panel'),
('remotecontrol', 'Remote Control')
;
ox_inventory
If you are using ox_inventory, add this to your ox_inventory > data > items.lua:
['solarpanel'] = {
label = 'Solar Panel',
weight = 150,
stack = false
},
['remotecontrol'] = {
label = 'Remote Control',
weight = 50,
stack = false
}
You can change item names in config.lua
Items images:


Last updated