Install Instructions
Follow the steps below to install this resource to your server.
1
2
Add items
Open the [install]
folder and add the items
& their images
to your inventory
-- [FOOD INGREDIENTS] --
["tofu"] = { ["name"] = "tofu", ["label"] = "Tofu", ["weight"] = 10, ["type"] = "item", ["image"] = "tofu.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredients" },
["rice"] = { ["name"] = "rice", ["label"] = "Rice", ["weight"] = 10, ["type"] = "item", ["image"] = "rice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredients" },
["seaweed"] = { ["name"] = "seaweed", ["label"] = "Sea Weed", ["weight"] = 10, ["type"] = "item", ["image"] = "seaweed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredients" },
["skewer"] = { ["name"] = "skewer", ["label"] = "Skewer", ["weight"] = 10, ["type"] = "item", ["image"] = "skewer.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredients" },
["fish"] = { ["name"] = "fish", ["label"] = "Fish", ["weight"] = 10, ["type"] = "item", ["image"] = "fish.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredients" },
["teriyaki"] = { ["name"] = "teriyaki", ["label"] = "Teriyaki", ["weight"] = 10, ["type"] = "item", ["image"] = "teriyaki.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredients" },
["noodles"] = { ["name"] = "noodles", ["label"] = "Noodles", ["weight"] = 10, ["type"] = "item", ["image"] = "noodles.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredients" },
["chickenraw"] = { ["name"] = "chickenraw", ["label"] = "Raw Chicken Fillet", ["weight"] = 10, ["type"] = "item", ["image"] = "chickenraw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredients" },
-- [FOOD] --
["ramenhot"] = { ["name"] = "ramenhot", ["label"] = "Ramen Hot", ["weight"] = 10, ["type"] = "item", ["image"] = "ramenhot.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Food" },
["ramenchicken"] = { ["name"] = "ramenchicken", ["label"] = "Ramen Chicken", ["weight"] = 10, ["type"] = "item", ["image"] = "ramenchicken.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Food" },
["ramenpork"] = { ["name"] = "ramenpork", ["label"] = "Ramen Pork", ["weight"] = 10, ["type"] = "item", ["image"] = "ramenpork.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Food" },
["yakitori"] = { ["name"] = "yakitori", ["label"] = "Yakitori", ["weight"] = 10, ["type"] = "item", ["image"] = "yakitori.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Food" },
["teriyakichicken"] = { ["name"] = "teriyakichicken", ["label"] = "Teriyaki Chicken", ["weight"] = 10, ["type"] = "item", ["image"] = "teriyakichicken.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Food" },
["sushi"] = { ["name"] = "sushi", ["label"] = "Sushi", ["weight"] = 10, ["type"] = "item", ["image"] = "sushi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Food" },
["misosoup"] = { ["name"] = "misosoup", ["label"] = "Miso Soup", ["weight"] = 30, ["type"] = "item", ["image"] = "misosoup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Food" },
["onigiri"] = { ["name"] = "onigiri", ["label"] = "Onigiri", ["weight"] = 10, ["type"] = "item", ["image"] = "onigiri.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Food" },
-- [DRINKS] --
["milkshake"] = { ["name"] = "milkshake", ["label"] = "Milkshake", ["weight"] = 10, ["type"] = "item", ["image"] = "milkshake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Drink" },
["soda"] = { ["name"] = "soda", ["label"] = "Soda", ["weight"] = 10, ["type"] = "item", ["image"] = "soda.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Drink" },
3
Add jobs
Open the [install]
folder and add the jobs
to your core resource
-- [Install into: qb-core/shared/jobs.lua] --
koi = {
label = 'Koi Restaurant',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = { name = 'Helper', payment = 30 },
['1'] = { name = 'Cook', payment = 40 },
['2'] = { name = 'Bartender', payment = 50 },
['3'] = { name = 'Manager', payment = 60 },
['4'] = { name = 'Boss', isboss = true, payment = 70 },
},
},
Upon completion, do not delete the [install]
folder or any .sql
files or you will experience errors.
Last updated