Quasar Store Logo

Inventory Items

This section includes the complete item list for the script, ready to be integrated into the most popular inventory systems. Each item is properly configured with its name, label, and parameters to ensure full compatibility and seamless functionality within your server’s inventory setup.

qs-inventory

esx_inventory

qb-inventory

ox_inventory

['burger_bun_bottom'] = { label = 'Hamburger Bun (Bottom)', weight = 50, stack = true, close = false, description = 'Bottom part of a hamburger bun', }, ['burger_bun_top'] = { label = 'Hamburger Bun (Top)', weight = 50, stack = true, close = false, description = 'Top part of a hamburger bun', }, ['burger_raw_patty'] = { label = 'Raw Patty', weight = 150, stack = true, close = false, description = 'Raw beef patty ready to be grilled', }, ['burger_cheese'] = { label = 'Cheese Slice', weight = 30, stack = true, close = false, description = 'A slice of melty cheese', }, ['lettuce'] = { label = 'Lettuce', weight = 20, stack = true, close = false, description = 'Fresh crispy lettuce', }, ['tomato_slice'] = { label = 'Tomato Slice', weight = 25, stack = true, close = false, description = 'Fresh tomato slice', }, ['onion_slice'] = { label = 'Onion Ring', weight = 15, stack = true, close = false, description = 'Thin onion ring', }, ['burger'] = { label = 'Burger', weight = 350, stack = true, close = true, description = 'Delicious handmade burger', server = { export = 'qs-restaurant-creator.consumable', }, }, ['raw_fries'] = { label = 'Raw Fries', weight = 200, stack = true, close = false, description = 'Uncooked potato slices ready for frying', }, ['cooked_fries'] = { label = 'Cooked Fries', weight = 200, stack = true, close = true, description = 'Crispy golden french fries', server = { export = 'qs-restaurant-creator.consumable', }, }, ['cola_drink'] = { label = 'Cola', weight = 200, stack = true, close = true, description = 'A refreshing cola drink', server = { export = 'qs-restaurant-creator.consumable', }, }, ['sprunk_drink'] = { label = 'Sprunk', weight = 200, stack = true, close = true, description = 'A can of Sprunk soda', server = { export = 'qs-restaurant-creator.consumable', }, }, ['orange_drink'] = { label = 'Orange Juice', weight = 200, stack = true, close = true, description = 'Fresh orange juice', server = { export = 'qs-restaurant-creator.consumable', }, }, -- Pizza ['raw_pizza_dough'] = { label = 'Raw Pizza Dough', weight = 200, stack = true, close = false, description = 'Raw pizza dough ready to be rolled', }, ['mozzarella_cheese'] = { label = 'Mozzarella Cheese', weight = 150, stack = true, close = false, description = 'Fresh mozzarella cheese', }, ['pizza_sauce'] = { label = 'Pizza Sauce', weight = 100, stack = true, close = false, description = 'Tomato-based pizza sauce', }, ['pizza_green_pepper'] = { label = 'Green Pepper', weight = 50, stack = true, close = false, description = 'Fresh green pepper for pizza', }, ['pizza_pastrami'] = { label = 'Pastrami', weight = 80, stack = true, close = false, description = 'Raw pastrami for pizza', }, ['pizza_olive'] = { label = 'Olive', weight = 30, stack = true, close = false, description = 'Black olives for pizza', }, ['pizza_pepperoni'] = { label = 'Pepperoni', weight = 60, stack = true, close = false, description = 'Pepperoni slices for pizza', }, ['pizza_green_olive'] = { label = 'Green Olive', weight = 30, stack = true, close = false, description = 'Green olive for pizza', }, ['pizza_mushroom'] = { label = 'Mushroom', weight = 40, stack = true, close = false, description = 'Sliced mushroom for pizza', }, ['cooked_pizza'] = { label = 'Cooked Pizza', weight = 500, stack = true, close = true, description = 'A freshly baked pizza', server = { export = 'qs-restaurant-creator.consumable', }, }, --[[ Other cooked outputs (from qs_restaurant_recipe_steps / qs_restaurant_recipes) need the same block: server = { export = 'qs-restaurant-creator.consumable' }, (ox_inventory sets consume = 1 automatically when server.export is set.) ]]