Installation
5
Add items for your server.
vending = { name = 'vending', label = 'Vending Drink', weight = 100, type = 'item', image = 'vending.png', unique = true, useable = true, shouldClose = true, description = '' },
vending2 = { name = 'vending2', label = 'Vending Food', weight = 100, type = 'item', image = 'vending2.png', unique = true, useable = true, shouldClose = true, description = '' }, ['vending'] = {
label = 'Vending Drink',
stack = false,
weight = 500,
},
['vending2'] = {
label = 'Vending Food',
stack = false,
weight = 500,
},INSERT INTO items (name, label, weight, rare, can_remove) VALUES
('vending', 'Vending Drink', 500, 0, 1),
('vending2', 'Vending Food', 1000, 0, 1);Last updated