Item List
Below you’ll find the required items for the Noodle Job Script. We’ve provided two different setups depending on your framework.
🟦 QBCore (items.lua)
Add the following items to your shared/items.lua:
-- Noodle Cafe Item
--Food Item
['noodlebox'] = {['name'] = 'noodlebox', ['label'] = 'Noodle Box', ['weight'] = 200, ['type'] = 'item', ['image'] = 'noodlebox.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A classic box full of stir-fried noodles.'},
['beefnoodle'] = {['name'] = 'beefnoodle', ['label'] = 'Beef Noodles', ['weight'] = 220, ['type'] = 'item', ['image'] = 'beefnoodle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Savory noodles with slices of tender beef.'},
['chickennoodle'] = {['name'] = 'chickennoodle', ['label'] = 'Chicken Noodles', ['weight'] = 220, ['type'] = 'item', ['image'] = 'chickennoodle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Delicious noodles mixed with grilled chicken.'},
['vegnoodle'] = {['name'] = 'vegnoodle', ['label'] = 'Veggie Noodles', ['weight'] = 210, ['type'] = 'item', ['image'] = 'vegnoodle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bowl of fresh stir-fried vegetable noodles.'},
['seafoodnoodle'] = {['name'] = 'seafoodnoodle', ['label'] = 'Seafood Noodles', ['weight'] = 230, ['type'] = 'item', ['image'] = 'seafoodnoodle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Noodles with shrimp, squid, and fish flavor.'},
['spicynoodle'] = {['name'] = 'spicynoodle', ['label'] = 'Spicy Noodles', ['weight'] = 210, ['type'] = 'item', ['image'] = 'spicynoodle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Hot and spicy noodles that pack a punch!'},
['noodleset'] = {['name'] = 'noodleset', ['label'] = 'Noodle Meal Set', ['weight'] = 300, ['type'] = 'item', ['image'] = 'noodleset.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A complete meal: noodles, drink, and snack.'},
['side_salad'] = {['name'] = 'side_salad', ['label'] = 'Salad', ['weight'] = 300, ['type'] = 'item', ['image'] = 'side_salad.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Salad'},
--Raw Item
['carrot'] = {['name'] = 'carrot', ['label'] = 'Carrot', ['weight'] = 100, ['type'] = 'item', ['image'] = 'carrot.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh raw carrot.'},
['cabbage'] = {['name'] = 'cabbage', ['label'] = 'Cabbage', ['weight'] = 150, ['type'] = 'item', ['image'] = 'cabbage.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh raw cabbage.'},
['tomato'] = {['name'] = 'tomato', ['label'] = 'Tomato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'tomato.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh ripe tomato.'},
['bellpepper'] = {['name'] = 'bellpepper', ['label'] = 'Bell Pepper', ['weight'] = 100, ['type'] = 'item', ['image'] = 'bellpepper.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh bell pepper.'},
['onion'] = {['name'] = 'onion', ['label'] = 'Onion', ['weight'] = 80, ['type'] = 'item', ['image'] = 'onion.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh onion.'},
['spinach'] = {['name'] = 'spinach', ['label'] = 'Spinach', ['weight'] = 70, ['type'] = 'item', ['image'] = 'spinach.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh spinach leaves.'},
['garlic'] = {['name'] = 'garlic', ['label'] = 'Garlic', ['weight'] = 50, ['type'] = 'item', ['image'] = 'garlic.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh garlic cloves.'},
['chili'] = {['name'] = 'chili', ['label'] = 'Chili Pepper', ['weight'] = 40, ['type'] = 'item', ['image'] = 'chili.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy chili pepper.'},
['beef'] = {['name'] = 'beef', ['label'] = 'Raw Beef', ['weight'] = 250, ['type'] = 'item', ['image'] = 'beef.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw beef meat.'},
['chicken'] = {['name'] = 'chicken', ['label'] = 'Raw Chicken', ['weight'] = 200, ['type'] = 'item', ['image'] = 'chicken.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw chicken meat.'},
['cilantro'] = {['name'] = 'cilantro', ['label'] = 'Fresh Cilantro', ['weight'] = 30, ['type'] = 'item', ['image'] = 'cilantro.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh cilantro herb.'},
['raw_noodles'] = {['name'] = 'raw_noodles', ['label'] = 'Raw Noodle', ['weight'] = 30, ['type'] = 'item', ['image'] = 'raw_noodles.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh Raw Ramen.'},
['shrimp'] = {['name'] = 'shrimp', ['label'] = 'Shrimp', ['weight'] = 30, ['type'] = 'item', ['image'] = 'shrimp.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh Sea Fish.'},
--Sliced Item
['sliced_carrot'] = {['name'] = 'sliced_carrot', ['label'] = 'Sliced Carrot', ['weight'] = 90, ['type'] = 'item', ['image'] = 'sliced_carrot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced carrot.'},
['sliced_cabbage'] = {['name'] = 'sliced_cabbage', ['label'] = 'Sliced Cabbage', ['weight'] = 140, ['type'] = 'item', ['image'] = 'sliced_cabbage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced cabbage.'},
['sliced_tomato'] = {['name'] = 'sliced_tomato', ['label'] = 'Sliced Tomato', ['weight'] = 90, ['type'] = 'item', ['image'] = 'sliced_tomato.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced tomato.'},
['sliced_bellpepper'] = {['name'] = 'sliced_bellpepper', ['label'] = 'Sliced Bell Pepper', ['weight'] = 90, ['type'] = 'item', ['image'] = 'sliced_bellpepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly sliced bell pepper.'},
['chopped_onion'] = {['name'] = 'chopped_onion', ['label'] = 'Chopped Onion', ['weight'] = 70, ['type'] = 'item', ['image'] = 'chopped_onion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Finely chopped onion.'},
['chopped_garlic'] = {['name'] = 'chopped_garlic', ['label'] = 'Chopped Garlic', ['weight'] = 70, ['type'] = 'item', ['image'] = 'chopped_garlic.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Finely chopped garlic.'},
['chopped_spinach'] = {['name'] = 'chopped_spinach', ['label'] = 'Chopped Spinach', ['weight'] = 65, ['type'] = 'item', ['image'] = 'chopped_spinach.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly chopped spinach.'},
['minced_garlic'] = {['name'] = 'minced_garlic', ['label'] = 'Minced Garlic', ['weight'] = 40, ['type'] = 'item', ['image'] = 'minced_garlic.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Minced garlic cloves.'},
['chopped_chili'] = {['name'] = 'chopped_chili', ['label'] = 'Chopped Chili Pepper', ['weight'] = 35, ['type'] = 'item', ['image'] = 'chopped_chili.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chopped spicy chili peppers.'},
['sliced_beef'] = {['name'] = 'sliced_beef', ['label'] = 'Sliced Beef', ['weight'] = 230, ['type'] = 'item', ['image'] = 'sliced_beef.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tender sliced beef meat.'},
['grilled_chicken'] = {['name'] = 'grilled_chicken', ['label'] = 'Grilled Chicken', ['weight'] = 190, ['type'] = 'item', ['image'] = 'grilled_chicken.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Juicy grilled chicken pieces.'},
['chopped_cilantro'] = {['name'] = 'chopped_cilantro', ['label'] = 'Chopped Cilantro', ['weight'] = 25, ['type'] = 'item', ['image'] = 'chopped_cilantro.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Freshly chopped cilantro.'},
--Drink Item
['green_tea'] = {['name'] = 'green_tea', ['label'] = 'Green Tea', ['weight'] = 100, ['type'] = 'item', ['image'] = 'green_tea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['description'] = 'A warm cup of soothing green tea.'},
['iced_tea'] = {['name'] = 'iced_tea', ['label'] = 'Iced Tea', ['weight'] = 100, ['type'] = 'item', ['image'] = 'iced_tea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['description'] = 'Cool and refreshing iced tea.'},
['milk_tea'] = {['name'] = 'milk_tea', ['label'] = 'Milk Tea', ['weight'] = 120, ['type'] = 'item', ['image'] = 'milk_tea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['description'] = 'Sweet and creamy milk tea.'},
['jasmine_tea'] = {['name'] = 'jasmine_tea', ['label'] = 'Jasmine Tea', ['weight'] = 90, ['type'] = 'item', ['image'] = 'jasmine_tea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['description'] = 'Delicate floral jasmine tea.'},
['lemonade'] = {['name'] = 'lemonade', ['label'] = 'Lemonade', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lemonade.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['description'] = 'Freshly squeezed lemonade.'},
['coconut_juice'] = {['name'] = 'coconut_juice', ['label'] = 'Coconut Juice', ['weight'] = 110, ['type'] = 'item', ['image'] = 'coconut_juice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['description'] = 'Cool coconut water served fresh.'},
['lychee_soda'] = {['name'] = 'lychee_soda', ['label'] = 'Lychee Soda', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lychee_soda.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['description'] = 'A fizzy lychee-flavored drink.'},
['spring_water'] = { name = 'spring_water', label = 'Spring Water', weight = 500, type = 'item', image = 'spring_water.png', unique = false, useable = false, shouldClose = true, description = 'Pure bottled spring water.' },
['tea_leaves'] = { name = 'tea_leaves', label = 'Tea Leaves', weight = 100, type = 'item', image = 'tea_leaves.png', unique = false, useable = false, shouldClose = true, description = 'A handful of dried tea leaves.' },
['ice_cube'] = { name = 'ice_cube', label = 'Ice Cube', weight = 50, type = 'item', image = 'ice_cube.png', unique = false, useable = false, shouldClose = true, description = 'Cold ice cube, perfect for chilling drinks.' },
['milk'] = { name = 'milk', label = 'Milk', weight = 300, type = 'item', image = 'milk.png', unique = false, useable = false, shouldClose = true, description = 'Fresh dairy milk.' },
['jasmine_leaves'] = { name = 'jasmine_leaves', label = 'Jasmine Leaves', weight = 80, type = 'item', image = 'jasmine_leaves.png', unique = false, useable = false, shouldClose = true, description = 'Fragrant jasmine tea leaves.' },
['lemon'] = { name = 'lemon', label = 'Lemon', weight = 100, type = 'item', image = 'lemon.png', unique = false, useable = false, shouldClose = true, description = 'Fresh lemon, full of zest.' },
['sugar'] = { name = 'sugar', label = 'Sugar', weight = 50, type = 'item', image = 'sugar.png', unique = false, useable = false, shouldClose = true, description = 'A spoonful of sugar for sweetening.' },
['coconut'] = { name = 'coconut', label = 'Coconut', weight = 250, type = 'item', image = 'coconut.png', unique = false, useable = false, shouldClose = true, description = 'A whole coconut, full of fresh juice.' },
['lychee'] = { name = 'lychee', label = 'Lychee', weight = 60, type = 'item', image = 'lychee.png', unique = false, useable = false, shouldClose = true, description = 'Sweet and juicy lychee fruit.' },
['soda_water'] = { name = 'soda_water', label = 'Soda Water', weight = 300, type = 'item', image = 'soda_water.png', unique = false, useable = false, shouldClose = true, description = 'Sparkling soda water.' },
🟩 Ox Inventory (items.lua)
For Ox Inventory, add items in your ox_inventory/data/items.lua:
📌 Note:
Don’t forget to add icons for each item in your
inventory/html/images/folder.File names must match the item
imagename exactly (e.g.,ramen_beef.png).
Last updated