Installation
Last updated
Last updated
Make Sure all the dependencies are installed.
Required
or
Adjust config.lua according to your liking
Make sure to set your target, clothing, billing, inventory script
Now execute this query into your server database using heidisql or phpmyadmin.
CREATE TABLE IF NOT EXISTS `pl_uwucafe` (
`stock` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin;
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_uwu', 'Uwu Cafe', 1);
INSERT INTO `datastore` (name, label, shared) VALUES
('society_uwu', 'Uwu Cafe', 1);
INSERT INTO `jobs` (name, label,whitelisted) VALUES
('uwu', 'UwU Cafe',1)
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('uwu',0,'cashier','Cashier',20,'{}','{}'),
('uwu',1,'cook','Cook',40,'{}','{}'),
('uwu',2,'staff','Staff',60,'{}','{}'),
('uwu',3,'manager','Manager',85,'{}','{}'),
('uwu',4,'boss','Owner',100,'{}','{}')
;
CREATE TABLE IF NOT EXISTS `pl_uwucafe` (
`stock` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=armscii8 COLLATE=armscii8_bin;
Add the items into your server
Add the Following Items in ox_inventory/data/items.lua
["cc_tonkotsu_ramen"] = {
label = "Tonkotsu Ramen",
weight = 1,
stack = true,
close = true,
},
["cc_shoyu_ramen"] = {
label = "Shoyu Ramen",
weight = 1,
stack = true,
close = true,
},
["cc_nagoya_taiwan_ramen"] = {
label = "Nagoya Taiwan Ramen",
weight = 1,
stack = true,
close = true,
},
["cc_tropicalparadisesmoothie"] = {
label = "Tropical Paradise Smoothie",
weight = 1,
stack = true,
close = true,
},
["cc_turkey_sandwich"] = {
label = "Turkey Sandwich",
weight = 1,
stack = true,
close = true,
},
["cc_turkey_slices"] = {
label = "Turkey Slices",
weight = 1,
stack = true,
close = true,
},
["cc_vanilla_icecream"] = {
label = "Vanilla Icecream",
weight = 1,
stack = true,
close = true,
},
["cc_wheat_noodles"] = {
label = "Wheat Noodles",
weight = 1,
stack = true,
close = true,
},
["cc_yogurtcup"] = {
label = "Yogurt Cup",
weight = 1,
stack = true,
close = true,
},
["cc_avocado"] = {
label = "Avocado",
weight = 1,
stack = true,
close = true,
},
["cc_avocado_sandwich"] = {
label = "Avocado Sandwich",
weight = 1,
stack = true,
close = true,
},
["cc_bacon_strips"] = {
label = "Bacon Strips",
weight = 1,
stack = true,
close = true,
},
["cc_berryblastsmoothie"] = {
label = "BerryBlast Smoothie",
weight = 1,
stack = true,
close = true,
},
["cc_black_garlic_ramen"] = {
label = "Black Garlic Ramen",
weight = 1,
stack = true,
close = true,
},
["cc_black_tapioca_pearls"] = {
label = "Black Tapioca Pearls",
weight = 1,
stack = true,
close = true,
},
["cc_brewed_black_tea"] = {
label = "Brewed Black Tea",
weight = 1,
stack = true,
close = true,
},
["cc_bubbletea"] = {
label = "Bubble Tea",
weight = 1,
stack = true,
close = true,
},
["cc_butter"] = {
label = "Butter",
weight = 1,
stack = true,
close = true,
},
["cc_cappuccino"] = {
label = "Cappuccino",
weight = 1,
stack = true,
close = true,
},
["cc_caprese_sandwich"] = {
label = "Caprese Sandwich",
weight = 1,
stack = true,
close = true,
},
["cc_chashu_pork"] = {
label = "Chashu Pork",
weight = 1,
stack = true,
close = true,
},
["cc_cheddar_cheese"] = {
label = "Cheddar Cheese",
weight = 1,
stack = true,
close = true,
},
["cc_cheese_sandwich"] = {
label = "Cheese Sandwich",
weight = 1,
stack = true,
close = true,
},
["cc_chocolatemilkshake"] = {
label = "Chocolate MilkShake",
weight = 1,
stack = true,
close = true,
},
["cc_chocolate_chips"] = {
label = "Chocolate Chips",
weight = 1,
stack = true,
close = true,
},
["cc_chocolate_cookies"] = {
label = "Chocolate Cookies",
weight = 1,
stack = true,
close = true,
},
["cc_chocolate_icecream"] = {
label = "Chocolate Icecream",
weight = 1,
stack = true,
close = true,
},
["cc_chocolate_syrup"] = {
label = "Chocolate Syrup",
weight = 1,
stack = true,
close = true,
},
["cc_classic_blt_sandwich"] = {
label = "Classic Blt Sandwich",
weight = 1,
stack = true,
close = true,
},
["cc_cocao_powder"] = {
label = "Cocoa Powder",
weight = 1,
stack = true,
close = true,
},
["cc_coconut_milk"] = {
label = "Coconut Milk",
weight = 1,
stack = true,
close = true,
},
["cc_coffee_icecream"] = {
label = "Coffee Icecream",
weight = 1,
stack = true,
close = true,
},
["cc_coffee_powder"] = {
label = "Coffee Powder",
weight = 1,
stack = true,
close = true,
},
["cc_cuporangejuice"] = {
label = "Cup of Orange Juice",
weight = 1,
stack = true,
close = true,
},
["cc_espresso"] = {
label = "Espresso",
weight = 1,
stack = true,
close = true,
},
["cc_fukuoka_hakata_ramen"] = {
label = "Fukuoka Hakata Ramen",
weight = 1,
stack = true,
close = true,
},
["cc_green_onions"] = {
label = "Green Onions",
weight = 1,
stack = true,
close = true,
},
["cc_heavy_cream"] = {
label = "Heavy Cream",
weight = 1,
stack = true,
close = true,
},
["cc_hotchocolate"] = {
label = "Hot Chocolate",
weight = 1,
stack = true,
close = true,
},
["cc_iekei_ramen"] = {
label = "Iekei Ramen",
weight = 1,
stack = true,
close = true,
},
["cc_latte"] = {
label = "Latte",
weight = 1,
stack = true,
close = true,
},
["cc_lettuce"] = {
label = "Lettuce",
weight = 1,
stack = true,
close = true,
},
["cc_mango_chunks"] = {
label = "Mango Chunks",
weight = 1,
stack = true,
close = true,
},
["cc_milk"] = {
label = "Milk",
weight = 1,
stack = true,
close = true,
},
["cc_mintchoco_icecream"] = {
label = "Mintchoco Icecream",
weight = 1,
stack = true,
close = true,
},
["cc_miso_broth"] = {
label = "Miso Broth",
weight = 1,
stack = true,
close = true,
},
["cc_miso_ramen"] = {
label = "Miso Ramen",
weight = 1,
stack = true,
close = true,
},
["cc_mixedberries"] = {
label = "Mixed Berries",
weight = 1,
stack = true,
close = true,
},
["cc_mocha"] = {
label = "Mocha",
weight = 1,
stack = true,
close = true,
},
["cc_mozzarella_cheese"] = {
label = "Mozzarella Cheese",
weight = 1,
stack = true,
close = true,
},
["cc_osaka_shio_ramen"] = {
label = "Osaka Shio Ramen",
weight = 1,
stack = true,
close = true,
},
["cc_pineapple_chunks"] = {
label = "Pineapple Chunks",
weight = 1,
stack = true,
close = true,
},
["cc_pure_vanilla"] = {
label = "Pure Vanilla",
weight = 1,
stack = true,
close = true,
},
["cc_ripebanana"] = {
label = "Ripe Banana",
weight = 1,
stack = true,
close = true,
},
["cc_slices_of_bread"] = {
label = "Slices of Bread",
weight = 1,
stack = true,
close = true,
},
["cc_soft_boiled_egg"] = {
label = "Soft Boiled Egg",
weight = 1,
stack = true,
close = true,
},
["cc_spinach"] = {
label = "Spinach",
weight = 1,
stack = true,
close = true,
},
["cc_strawberries"] = {
label = "Strawberries",
weight = 1,
stack = true,
close = true,
},
["cc_strawberrysmoothie"] = {
label = "Strawberry Smoothie",
weight = 1,
stack = true,
close = true,
},
["cc_strawberry_icecream"] = {
label = "Strawberry Icecream",
weight = 1,
stack = true,
close = true,
},
["cc_sugar"] = {
label = "Sugar",
weight = 1,
stack = true,
close = true,
},
Add the Following Items in qb-core/shared/items.lua
['cc_sugar'] = {['name'] = 'cc_sugar', ['label'] = 'Sugar', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_sugar.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_espresso'] = {['name'] = 'cc_espresso', ['label'] = 'Espresso', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_espresso.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_cappuccino'] = {['name'] = 'cc_cappuccino', ['label'] = 'Cappuccino', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_cappuccino.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_milk'] = {['name'] = 'cc_milk', ['label'] = 'Milk', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_milk.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_cocao_powder'] = {['name'] = 'cc_cocao_powder', ['label'] = 'Cocao Powder', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_cocao_powder.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_latte'] = {['name'] = 'cc_latte', ['label'] = 'Latte', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_latte.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_mocha'] = {['name'] = 'cc_mocha', ['label'] = 'Mocha', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_mocha.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_chocolate_syrup'] = {['name'] = 'cc_chocolate_syrup', ['label'] = 'Chocolate Syrup', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolate_syrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_hotchocolate'] = {['name'] = 'cc_hotchocolate', ['label'] = 'Hot Chocolate', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_hotchocolate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_bubbletea'] = {['name'] = 'cc_bubbletea', ['label'] = 'Bubble Tea', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_bubbletea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_chocolatemilkshake'] = {['name'] = 'cc_chocolatemilkshake', ['label'] = 'Chocolate Milkshake', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolatemilkshake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_strawberrysmoothie'] = {['name'] = 'cc_strawberrysmoothie', ['label'] = 'Strawberry Smoothie', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_strawberrysmoothie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_berryblastsmoothie'] = {['name'] = 'cc_berryblastsmoothie', ['label'] = 'Berry Blast Smoothie', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_berryblastsmoothie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_tropicalparadisesmoothie'] = {['name'] = 'cc_tropicalparadisesmoothie', ['label'] = 'Tropical Paradise Smoothie', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_tropicalparadisesmoothie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_mixedberries'] = {['name'] = 'cc_mixedberries', ['label'] = 'Cup of Mixed Berries', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_mixedberries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_yogurtcup'] = {['name'] = 'cc_yogurtcup', ['label'] = 'Yogurt Cup', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_yogurtcup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_cuporangejuice'] = {['name'] = 'cc_cuporangejuice', ['label'] = 'Yogurt Cup', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cup_orange_juice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_ripebanana'] = {['name'] = 'cc_ripebanana', ['label'] = 'Ripe Banana', ['weight'] = 10, ['type'] = 'item', ['image'] = 'ripe_banana.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_coconut_milk'] = {['name'] = 'cc_coconut_milk', ['label'] = 'Coconut Milk', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_coconut_milk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_pineapple_chunks'] = {['name'] = 'cc_pineapple_chunks', ['label'] = 'Pineapple Chunks', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_pineapple_chunks.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_mango_chunks'] = {['name'] = 'cc_mango_chunks', ['label'] = 'Mango Chunks', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_pineapple_chunks.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_black_tapioca_pearls'] = {['name'] = 'cc_black_tapioca_pearls', ['label'] = 'Black Tapioca Pearls', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_black_tapioca_pearls.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_brewed_black_tea'] = {['name'] = 'cc_brewed_black_tea', ['label'] = 'Brewed Black Tea', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_brewed_black_tea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_vanilla_icecream'] = {['name'] = 'cc_vanilla_icecream', ['label'] = 'Vanilla Icecream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_vanilla_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_strawberries'] = {['name'] = 'cc_strawberries', ['label'] = 'Strawberries', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_strawberries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_fukuoka_hakata_ramen'] = {['name'] = 'cc_fukuoka_hakata_ramen', ['label'] = 'Fukuoka Hakata Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_fukuoka_hakata_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_miso_ramen'] = {['name'] = 'cc_miso_ramen', ['label'] = 'Miso Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_miso_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_nagoya_taiwan_ramen'] = {['name'] = 'cc_nagoya_taiwan_ramen', ['label'] = 'Nagoya Taiwan Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_nagoya_taiwan_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_osaka_shio_ramen'] = {['name'] = 'cc_osaka_shio_ramen', ['label'] = 'Osaka Shio Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_osaka_shio_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_shoyu_ramen'] = {['name'] = 'cc_shoyu_ramen', ['label'] = 'Shoyu Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_shoyu_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_tonkotsu_ramen'] = {['name'] = 'cc_tonkotsu_ramen', ['label'] = 'Tonkotsu Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_tonkotsu_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_iekei_ramen'] = {['name'] = 'cc_iekei_ramen', ['label'] = 'Iekei Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'Iekei_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_black_garlic_ramen'] = { ['name'] = 'cc_black_garlic_ramen', ['label'] = 'Black Garlic Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_black_garlic_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_wheat_noodles'] = { ['name'] = 'cc_wheat_noodles', ['label'] = 'Wheat Noodles', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_wheat_noodles.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_green_onions'] = { ['name'] = 'green_onions', ['label'] = 'Green Onions', ['weight'] = 10, ['type'] = 'item', ['image'] = 'green_onions.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_chashu_pork'] = { ['name'] = 'cc_chashu_pork', ['label'] = 'Chashu Pork', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chashu_pork.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_miso_broth'] = { ['name'] = 'cc_miso_broth', ['label'] = 'Miso Broth', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_miso_broth.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_butter'] = { ['name'] = 'cc_butter', ['label'] = 'Butter', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_butter.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_spinach'] = { ['name'] = 'cc_spinach', ['label'] = 'Spinach', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_spinach.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_soft_boiled_egg'] = { ['name'] = 'cc_soft_boiled_egg', ['label'] = 'Soft Boiled Eggs', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_soft_boiled_egg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_pure_vanilla'] = { ['name'] = 'cc_pure_vanilla', ['label'] = 'Pure Vanilla', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_pure_vanilla.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_heavy_cream'] = { ['name'] = 'cc_heavy_cream', ['label'] = 'Cup of Heavy Cream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_heavy_cream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_chocolate_chips'] = { ['name'] = 'cc_chocolate_chips', ['label'] = 'Chocolate Chips', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolate_chips.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_coffee_powder'] = { ['name'] = 'cc_coffee_powder', ['label'] = 'Coffee Powder', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_coffee_powder.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_chocolate_cookies'] = { ['name'] = 'cc_chocolate_cookies', ['label'] = 'Chocolate Cookies', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolate_cookies.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_chocolate_icecream'] = { ['name'] = 'cc_chocolate_icecream', ['label'] = 'Chocolate IceCream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolate_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_strawberry_icecream'] = { ['name'] = 'cc_strawberry_icecream', ['label'] = 'Strawberry IceCream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_strawberry_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_mintchoco_icecream'] = { ['name'] = 'cc_mintchoco_icecream', ['label'] = 'Mint Chocolate Chip Ice Cream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_mintchoco_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_coffee_icecream'] = { ['name'] = 'cc_coffee_icecream', ['label'] = 'Coffee Ice Cream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_coffee_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_classic_blt_sandwich'] = { ['name'] = 'cc_classic_blt_sandwich', ['label'] = 'Classic BLT Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_classic_blt_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_bacon_strips'] = { ['name'] = 'cc_bacon_strips', ['label'] = 'Bacon strips', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_bacon_strips.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_slices_of_bread'] = { ['name'] = 'cc_slices_of_bread', ['label'] = 'Slices of Bread', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_slices_of_bread.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_lettuce'] = { ['name'] = 'cc_lettuce', ['label'] = 'Lettuce', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_lettuce.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_cheese_sandwich'] = { ['name'] = 'cc_cheese_sandwich', ['label'] = 'Cheese Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_cheese_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_cheddar_cheese'] = { ['name'] = 'cc_cheddar_cheese', ['label'] = 'Cheddar Cheese', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_cheddar_cheese.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_turkey_sandwich'] = { ['name'] = 'cc_turkey_sandwich', ['label'] = 'Turkey Club Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_turkey_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_turkey_slices'] = { ['name'] = 'cc_turkey_slices', ['label'] = 'Turkey Slices', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_turkey_slices.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_caprese_sandwich'] = { ['name'] = 'cc_caprese_sandwich', ['label'] = 'Caprese Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_caprese_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_mozzarella_cheese'] = { ['name'] = 'cc_mozzarella_cheese', ['label'] = 'Fresh mozzarella cheese', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_mozzarella_cheese.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_avocado_sandwich'] = { ['name'] = 'cc_avocado_sandwich', ['label'] = 'Chicken Avocado Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_avocado_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_avocado'] = { ['name'] = 'cc_avocado', ['label'] = 'Avocado', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_avocado.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
Add the Following Item in qs-inventory/shared/items.lua
['cc_sugar'] = {['name'] = 'cc_sugar', ['label'] = 'Sugar', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_sugar.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_espresso'] = {['name'] = 'cc_espresso', ['label'] = 'Espresso', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_espresso.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_cappuccino'] = {['name'] = 'cc_cappuccino', ['label'] = 'Cappuccino', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_cappuccino.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_milk'] = {['name'] = 'cc_milk', ['label'] = 'Milk', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_milk.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_cocao_powder'] = {['name'] = 'cc_cocao_powder', ['label'] = 'Cocao Powder', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_cocao_powder.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_latte'] = {['name'] = 'cc_latte', ['label'] = 'Latte', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_latte.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_mocha'] = {['name'] = 'cc_mocha', ['label'] = 'Mocha', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_mocha.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_chocolate_syrup'] = {['name'] = 'cc_chocolate_syrup', ['label'] = 'Chocolate Syrup', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolate_syrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_hotchocolate'] = {['name'] = 'cc_hotchocolate', ['label'] = 'Hot Chocolate', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_hotchocolate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_bubbletea'] = {['name'] = 'cc_bubbletea', ['label'] = 'Bubble Tea', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_bubbletea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_chocolatemilkshake'] = {['name'] = 'cc_chocolatemilkshake', ['label'] = 'Chocolate Milkshake', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolatemilkshake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_strawberrysmoothie'] = {['name'] = 'cc_strawberrysmoothie', ['label'] = 'Strawberry Smoothie', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_strawberrysmoothie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_berryblastsmoothie'] = {['name'] = 'cc_berryblastsmoothie', ['label'] = 'Berry Blast Smoothie', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_berryblastsmoothie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_tropicalparadisesmoothie'] = {['name'] = 'cc_tropicalparadisesmoothie', ['label'] = 'Tropical Paradise Smoothie', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_tropicalparadisesmoothie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_mixedberries'] = {['name'] = 'cc_mixedberries', ['label'] = 'Cup of Mixed Berries', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_mixedberries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_yogurtcup'] = {['name'] = 'cc_yogurtcup', ['label'] = 'Yogurt Cup', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_yogurtcup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_cuporangejuice'] = {['name'] = 'cc_cuporangejuice', ['label'] = 'Yogurt Cup', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cup_orange_juice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_ripebanana'] = {['name'] = 'cc_ripebanana', ['label'] = 'Ripe Banana', ['weight'] = 10, ['type'] = 'item', ['image'] = 'ripe_banana.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_coconut_milk'] = {['name'] = 'cc_coconut_milk', ['label'] = 'Coconut Milk', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_coconut_milk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_pineapple_chunks'] = {['name'] = 'cc_pineapple_chunks', ['label'] = 'Pineapple Chunks', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_pineapple_chunks.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_mango_chunks'] = {['name'] = 'cc_mango_chunks', ['label'] = 'Mango Chunks', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_pineapple_chunks.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_black_tapioca_pearls'] = {['name'] = 'cc_black_tapioca_pearls', ['label'] = 'Black Tapioca Pearls', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_black_tapioca_pearls.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_brewed_black_tea'] = {['name'] = 'cc_brewed_black_tea', ['label'] = 'Brewed Black Tea', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_brewed_black_tea.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_vanilla_icecream'] = {['name'] = 'cc_vanilla_icecream', ['label'] = 'Vanilla Icecream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_vanilla_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_strawberries'] = {['name'] = 'cc_strawberries', ['label'] = 'Strawberries', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_strawberries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_fukuoka_hakata_ramen'] = {['name'] = 'cc_fukuoka_hakata_ramen', ['label'] = 'Fukuoka Hakata Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_fukuoka_hakata_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_miso_ramen'] = {['name'] = 'cc_miso_ramen', ['label'] = 'Miso Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_miso_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_nagoya_taiwan_ramen'] = {['name'] = 'cc_nagoya_taiwan_ramen', ['label'] = 'Nagoya Taiwan Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_nagoya_taiwan_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_osaka_shio_ramen'] = {['name'] = 'cc_osaka_shio_ramen', ['label'] = 'Osaka Shio Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_osaka_shio_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_shoyu_ramen'] = {['name'] = 'cc_shoyu_ramen', ['label'] = 'Shoyu Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_shoyu_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_tonkotsu_ramen'] = {['name'] = 'cc_tonkotsu_ramen', ['label'] = 'Tonkotsu Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_tonkotsu_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_iekei_ramen'] = {['name'] = 'cc_iekei_ramen', ['label'] = 'Iekei Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'Iekei_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
['cc_black_garlic_ramen'] = { ['name'] = 'cc_black_garlic_ramen', ['label'] = 'Black Garlic Ramen', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_black_garlic_ramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_wheat_noodles'] = { ['name'] = 'cc_wheat_noodles', ['label'] = 'Wheat Noodles', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_wheat_noodles.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_green_onions'] = { ['name'] = 'green_onions', ['label'] = 'Green Onions', ['weight'] = 10, ['type'] = 'item', ['image'] = 'green_onions.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_chashu_pork'] = { ['name'] = 'cc_chashu_pork', ['label'] = 'Chashu Pork', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chashu_pork.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_miso_broth'] = { ['name'] = 'cc_miso_broth', ['label'] = 'Miso Broth', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_miso_broth.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_butter'] = { ['name'] = 'cc_butter', ['label'] = 'Butter', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_butter.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_spinach'] = { ['name'] = 'cc_spinach', ['label'] = 'Spinach', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_spinach.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_soft_boiled_egg'] = { ['name'] = 'cc_soft_boiled_egg', ['label'] = 'Soft Boiled Eggs', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_soft_boiled_egg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_pure_vanilla'] = { ['name'] = 'cc_pure_vanilla', ['label'] = 'Pure Vanilla', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_pure_vanilla.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_heavy_cream'] = { ['name'] = 'cc_heavy_cream', ['label'] = 'Cup of Heavy Cream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_heavy_cream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_chocolate_chips'] = { ['name'] = 'cc_chocolate_chips', ['label'] = 'Chocolate Chips', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolate_chips.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_coffee_powder'] = { ['name'] = 'cc_coffee_powder', ['label'] = 'Coffee Powder', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_coffee_powder.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_chocolate_cookies'] = { ['name'] = 'cc_chocolate_cookies', ['label'] = 'Chocolate Cookies', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolate_cookies.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_chocolate_icecream'] = { ['name'] = 'cc_chocolate_icecream', ['label'] = 'Chocolate IceCream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_chocolate_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_strawberry_icecream'] = { ['name'] = 'cc_strawberry_icecream', ['label'] = 'Strawberry IceCream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_strawberry_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_mintchoco_icecream'] = { ['name'] = 'cc_mintchoco_icecream', ['label'] = 'Mint Chocolate Chip Ice Cream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_mintchoco_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_coffee_icecream'] = { ['name'] = 'cc_coffee_icecream', ['label'] = 'Coffee Ice Cream', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_coffee_icecream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_classic_blt_sandwich'] = { ['name'] = 'cc_classic_blt_sandwich', ['label'] = 'Classic BLT Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_classic_blt_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_bacon_strips'] = { ['name'] = 'cc_bacon_strips', ['label'] = 'Bacon strips', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_bacon_strips.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_slices_of_bread'] = { ['name'] = 'cc_slices_of_bread', ['label'] = 'Slices of Bread', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_slices_of_bread.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_lettuce'] = { ['name'] = 'cc_lettuce', ['label'] = 'Lettuce', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_lettuce.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_cheese_sandwich'] = { ['name'] = 'cc_cheese_sandwich', ['label'] = 'Cheese Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_cheese_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_cheddar_cheese'] = { ['name'] = 'cc_cheddar_cheese', ['label'] = 'Cheddar Cheese', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_cheddar_cheese.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_turkey_sandwich'] = { ['name'] = 'cc_turkey_sandwich', ['label'] = 'Turkey Club Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_turkey_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_turkey_slices'] = { ['name'] = 'cc_turkey_slices', ['label'] = 'Turkey Slices', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_turkey_slices.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_caprese_sandwich'] = { ['name'] = 'cc_caprese_sandwich', ['label'] = 'Caprese Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_caprese_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_mozzarella_cheese'] = { ['name'] = 'cc_mozzarella_cheese', ['label'] = 'Fresh mozzarella cheese', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_mozzarella_cheese.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_avocado_sandwich'] = { ['name'] = 'cc_avocado_sandwich', ['label'] = 'Chicken Avocado Sandwich', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_avocado_sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
['cc_avocado'] = { ['name'] = 'cc_avocado', ['label'] = 'Avocado', ['weight'] = 10, ['type'] = 'item', ['image'] = 'cc_avocado.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '' },
Execute the following query into your database
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('cc_bubbletea', 'Bubble Tea', 1),
('cc_chocolatemilkshake', 'Chocolate MilkShake', 1),
('cc_strawberrysmoothie', 'Strawberry Smoothie', 1),
('cc_berryblastsmoothie', 'BerryBlast Smoothie', 1),
('cc_tropicalparadisesmoothie', 'Tropical Paradise Smoothie', 1),
('cc_fukuoka_hakata_ramen', 'Fukuoka Hakata Ramen', 1),
('cc_miso_ramen', 'Miso Ramen', 1),
('cc_osaka_shio_ramen', 'Osaka Shio Ramen', 1),
('cc_tonkotsu_ramen', 'Tonkotsu Ramen', 1),
('cc_iekei_ramen', 'Iekei Ramen', 1),
('cc_black_garlic_ramen', 'Black Garlic Ramen', 1),
('cc_shoyu_ramen', 'Shoyu Ramen', 1),
('cc_nagoya_taiwan_ramen','Nagoya Taiwan Ramen',1),
('cc_espresso', 'Espresso', 1),
('cc_cappuccino', 'Cappuccino', 1),
('cc_latte', 'Latte', 1),
('cc_mocha', 'Mocha', 1),
('cc_hotchocolate', 'Hot Chocolate', 1),
('cc_vanilla_icecream', 'Vanilla Icecream', 1),
('cc_chocolate_icecream', 'Chocolate Icecream', 1),
('cc_strawberry_icecream', 'Strawberry Icecream', 1),
('cc_mintchoco_icecream', 'Mintchoco Icecream', 1),
('cc_coffee_icecream', 'Coffee Icecream', 1),
('cc_classic_blt_sandwich', 'Classic Blt Sandwich', 1),
('cc_cheese_sandwich', 'Cheese Sandwich', 1),
('cc_turkey_sandwich', 'Turkey Sandwich', 1),
('cc_caprese_sandwich', 'Caprese Sandwich', 1),
('cc_avocado_sandwich', 'Avocado Sandwich', 1),
('cc_miso_broth', 'Miso Broth', 1),
('cc_cocao_powder', 'Cocoa Powder',1),
('cc_black_tapioca_pearls', 'Black Tapioca Pearls', 1),
('cc_brewed_black_tea', 'Brewed Black Tea', 1),
('cc_milk', 'Milk', 1),
('cc_chocolate_syrup', 'Chocolate Syrup', 1),
('cc_strawberries', 'Strawberries', 1),
('cc_ripebanana', 'Ripe Banana', 1),
('cc_yogurtcup', 'Yogurt Cup', 1),
('cc_cuporangejuice', 'Cup of Orange Juice', 1),
('cc_mixedberries', 'Mixed Berries', 1),
('cc_pineapple_chunks', 'Pineapple Chunks', 1),
('cc_mango_chunks', 'Mango Chunks', 1),
('cc_coconut_milk', 'Coconut Milk', 1),
('cc_pure_vanilla', 'Pure Vanilla', 1),
('cc_heavy_cream', 'Heavy Cream', 1),
('cc_chocolate_chips', 'Chocolate Chips', 1),
('cc_coffee_powder', 'Coffee Powder', 1),
('cc_chocolate_cookies', 'Chocolate Cookies', 1),
('cc_wheat_noodles', 'Wheat Noodles', 1),
('cc_green_onions', 'Green Onions', 1),
('cc_chashu_pork', 'Chashu Pork', 1),
('cc_butter', 'Butter', 1),
('cc_spinach', 'Spinach', 1),
('cc_soft_boiled_egg', 'Soft Boiled Egg', 1),
('cc_sugar', 'Sugar', 1),
('cc_bacon_strips', 'Bacon Strips', 1),
('cc_slices_of_bread', 'Slices of Bread', 1),
('cc_lettuce', 'Lettuce', 1),
('cc_cheddar_cheese', 'Cheddar Cheese', 1),
('cc_turkey_slices', 'Turkey Slices', 1),
('cc_mozzarella_cheese', 'Mozzarella Cheese', 1),
('cc_avocado', 'Avocado', 1);
Add the Following in qb-core/shared/jobs.lua
['uwu'] = {
label = 'Uwu Cafe',
defaultDuty = true,
grades = {
['0'] = {
name = 'Cashier',
payment = 50
},
['1'] = {
name = 'Cook',
payment = 75
},
['2'] = {
name = 'Shift Manager',
payment = 100
},
['3'] = {
name = 'Manager',
payment = 125,
},
['4'] = {
name = 'Owner',
payment = 125,
isboss = true,
},
},
},
Add the following in qb-management/client/cl_config.lua
['uwu'] = {
vector3(-577.248, -1067.644, 26.614)
},
If your qb-management doesn't have the above file. Then add in the following qb-management/config.lua
uwu = {
vector3(-577.248, -1067.644, 26.614)
},
Add in qb-smallresourcse/config.lua
--If using old qb-smallresources
Config.ConsumablesDrink = {
['cc_bubbletea'] = math.random(35, 54),
['cc_chocolatemilkshake'] = math.random(35, 54),
['cc_strawberrysmoothie'] = math.random(35, 54),
['cc_berryblastsmoothie'] = math.random(35, 54),
['cc_tropicalparadisesmoothie'] = math.random(35, 54),
['cc_espresso'] = math.random(35, 54),
['cc_cappuccino'] = math.random(35, 54),
['cc_latte'] = math.random(35, 54),
['cc_mocha'] = math.random(35, 54),
['cc_hotchocolate'] = math.random(35, 54),
}
Config.ConsumablesEat = {
['cc_fukuoka_hakata_ramen'] = math.random(35, 54),
['cc_miso_ramen'] = math.random(35, 54),
['cc_nagoya_taiwan_ramen'] = math.random(35, 54),
['cc_osaka_shio_ramen'] = math.random(35, 54),
['cc_shoyu_ramen'] = math.random(35, 54),
['cc_tonkotsu_ramen'] = math.random(35, 54),
['cc_iekei_ramen'] = math.random(35, 54),
['cc_black_garlic_ramen'] = math.random(35, 54),
['cc_vanilla_icecream'] = math.random(35, 54),
['cc_chocolate_icecream'] = math.random(35, 54),
['cc_strawberry_icecream'] = math.random(35, 54),
['cc_mintchoco_icecream'] = math.random(35, 54),
['cc_coffee_icecream'] = math.random(35, 54),
['cc_classic_blt_sandwich'] = math.random(35, 54),
['cc_cheese_sandwich'] = math.random(35, 54),
['cc_turkey_sandwich'] = math.random(35, 54),
['cc_caprese_sandwich'] = math.random(35, 54),
['cc_avocado_sandwich'] = math.random(35, 54),
}
--If using new qb-smallresources
Config.Consumables = {
eat = {
['cc_fukuoka_hakata_ramen'] = math.random(35, 54),
['cc_miso_ramen'] = math.random(35, 54),
['cc_nagoya_taiwan_ramen'] = math.random(35, 54),
['cc_osaka_shio_ramen'] = math.random(35, 54),
['cc_shoyu_ramen'] = math.random(35, 54),
['cc_tonkotsu_ramen'] = math.random(35, 54),
['cc_iekei_ramen'] = math.random(35, 54),
['cc_black_garlic_ramen'] = math.random(35, 54),
['cc_vanilla_icecream'] = math.random(35, 54),
['cc_chocolate_icecream'] = math.random(35, 54),
['cc_strawberry_icecream'] = math.random(35, 54),
['cc_mintchoco_icecream'] = math.random(35, 54),
['cc_coffee_icecream'] = math.random(35, 54),
['cc_classic_blt_sandwich'] = math.random(35, 54),
['cc_cheese_sandwich'] = math.random(35, 54),
['cc_turkey_sandwich'] = math.random(35, 54),
['cc_caprese_sandwich'] = math.random(35, 54),
['cc_avocado_sandwich'] = math.random(35, 54),
},
drink = {
['cc_bubbletea'] = math.random(35, 54),
['cc_chocolatemilkshake'] = math.random(35, 54),
['cc_strawberrysmoothie'] = math.random(35, 54),
['cc_berryblastsmoothie'] = math.random(35, 54),
['cc_tropicalparadisesmoothie'] = math.random(35, 54),
['cc_espresso'] = math.random(35, 54),
['cc_cappuccino'] = math.random(35, 54),
['cc_latte'] = math.random(35, 54),
['cc_mocha'] = math.random(35, 54),
['cc_hotchocolate'] = math.random(35, 54),
},
}
Add the following in jim-consumables/config.lua
["cc_fukuoka_hakata_ramen"] = { emote = "uwuramen", canRun = false, time = math.random(5000, 6000), stress = math.random(1, 2), heal = 0, armor = 0, type = "food",stats = { hunger = math.random(10,20), }},
["cc_miso_ramen"] = { emote = "uwuramen", canRun = false, time = math.random(5000, 6000), stress = math.random(1, 2), heal = 0, armor = 0, type = "food",stats = { hunger = math.random(10,20), }},
["cc_nagoya_taiwan_ramen"] = { emote = "uwuramen", canRun = false, time = math.random(5000, 6000), stress = math.random(1, 2), heal = 0, armor = 0, type = "food",stats = { hunger = math.random(10,20), }},
["cc_osaka_shio_ramen"] = { emote = "uwuramen", canRun = false, time = math.random(5000, 6000), stress = math.random(1, 2), heal = 0, armor = 0, type = "food",stats = { hunger = math.random(10,20), }},
["cc_shoyu_ramen"] = { emote = "uwuramen", canRun = false, time = math.random(5000, 6000), stress = math.random(1, 2), heal = 0, armor = 0, type = "food",stats = { hunger = math.random(10,20), }},
["cc_tonkotsu_ramen"] = { emote = "uwuramen", canRun = false, time = math.random(5000, 6000), stress = math.random(1, 2), heal = 0, armor = 0, type = "food",stats = { hunger = math.random(10,20), }},
["cc_iekei_ramen"] = { emote = "uwuramen", canRun = false, time = math.random(5000, 6000), stress = math.random(1, 2), heal = 0, armor = 0, type = "food",stats = { hunger = math.random(10,20), }},
["cc_black_garlic_ramen"] = { emote = "uwuramen", canRun = false, time = math.random(5000, 6000), stress = math.random(1, 2), heal = 0, armor = 0, type = "food",stats = { hunger = math.random(10,20), }},
["cc_vanilla_icecream"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_chocolate_icecream"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_strawberry_icecream"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_mintchoco_icecream"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_coffee_icecream"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_classic_blt_sandwich"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_cheese_sandwich"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_turkey_sandwich"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_caprese_sandwich"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_avocado_sandwich"] = {emote = "sandwich", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "food", stats = { hunger = math.random(10,20), }},
["cc_bubbletea"] = {emote = "uwudrink", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { thirst = math.random(10,20), }},
["cc_chocolatemilkshake"] = {emote = "uwudrink", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { thirst = math.random(10,20), }},
["cc_strawberrysmoothie"] = {emote = "uwudrink", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { thirst = math.random(10,20), }},
["cc_berryblastsmoothie"] = {emote = "uwudrink", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { thirst = math.random(10,20), }},
["cc_tropicalparadisesmoothie"] = {emote = "uwudrink", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { thirst = math.random(10,20), }},
["cc_espresso"] = {emote = "coffee", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { effect = "stamina", time = 10000, thirst = math.random(10,20), }},
["cc_cappuccino"] = {emote = "coffee", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { effect = "stamina", time = 10000, thirst = math.random(10,20), }},
["cc_latte"] = {emote = "coffee", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { effect = "stamina", time = 10000, thirst = math.random(10,20), }},
["cc_mocha"] = {emote = "coffee", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { effect = "stamina", time = 10000, thirst = math.random(10,20), }},
["cc_hotchocolate"] = {emote = "coffee", canRun = false, time = math.random(5000, 6000), stress = math.random(2, 4), heal = 0, armor = 0, type = "drink", stats = { effect = "stamina", time = 10000, thirst = math.random(10,20), }},
--Add this below in Emotes
["uwudrink"] = {"amb@world_human_drinking@coffee@male@idle_a", "idle_c", "Drink", AnimationOptions ={ Prop = "prop_cs_paper_cup", PropBone = 28422, PropPlacement = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0},EmoteMoving = true, EmoteLoop = true, }},
["uwuramen"] = {"anim@scripted@island@special_peds@pavel@hs4_pavel_ig5_caviar_p1", "base_idle", "Ramen", AnimationOptions ={ Prop = "prop_cs_bowl_01b", PropBone = 60309, PropPlacement = {0.0, 0.0300, 0.0100, 0.0, 0.0, 0.0},EmoteMoving = true, EmoteLoop = true, }},
Add the following in esx_basicneeds->config.lua
Config.Items = {
["cc_fukuoka_hakata_ramen"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_miso_ramen"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_nagoya_taiwan_ramen"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_osaka_shio_ramen"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_shoyu_ramen"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_tonkotsu_ramen"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_iekei_ramen"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_black_garlic_ramen"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_vanilla_icecream"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_chocolate_icecream"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_strawberry_icecream"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_mintchoco_icecream"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_coffee_icecream"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_classic_blt_sandwich"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_cheese_sandwich"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_turkey_sandwich"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_caprese_sandwich"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
["cc_avocado_sandwich"] = {
type = "food",
prop= "prop_cs_burger_01",
status = 200000,
remove = true
},
--Drinks
["cc_bubbletea"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_chocolatemilkshake"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_strawberrysmoothie"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_berryblastsmoothie"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_tropicalparadisesmoothie"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_espresso"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_cappuccino"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_latte"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_mocha"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
["cc_hotchocolate"] = {
type = "drink",
prop = "prop_ld_flow_bottle",
status = 100000,
remove = true
},
}
Copy all the Images folder and paste it in your inventory Images folder
To enable discord logs make sure to add your webhook in the server->Log.lua File