qs-inventory
['bunker_supplies'] = {
name = 'bunker_supplies',
label = 'Bunker Supplies',
weight = 1000,
type = 'item',
image = 'bunker_supplies.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Supplies for bunker operations'
},
['bunker_stock'] = {
name = 'bunker_stock',
label = 'Bunker Stock',
weight = 2000,
type = 'item',
image = 'bunker_stock.png',
unique = false,
useable = false,
shouldClose = true,
description = 'Processed goods from bunker production'
},esx_inventory
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('bunker_supplies', 'Bunker Supplies', 100, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('bunker_stock', 'Bunker Stock', 500, 0, 1);qb-inventory
bunker_supplies = {["name"] = "bunker_supplies", ["label"] = "Bunker Supplies", ["weight"] = 1000, ["type"] = "item", ["image"] = "bunker_supplies.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Supplies for bunker operations"},
bunker_stock = {["name"] = "bunker_stock", ["label"] = "Bunker Stock", ["weight"] = 2000, ["type"] = "item", ["image"] = "bunker_stock.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Processed goods from bunker production"},ox_inventory
['bunker_supplies'] = {
label = 'Bunker Supplies',
weight = 1000,
stack = true,
close = true,
description = 'Supplies for bunker operations'
},
['bunker_stock'] = {
label = 'Bunker Stock',
weight = 2000,
stack = true,
close = true,
description = 'Processed goods from bunker production'
},


