Install Instructions


Follow the steps below to install this resource to your server.

1

Install dependencies

Install (or update) all dependencies below:

  1. apex_lib (Included with the purchases - Please check your keymaster)

2

Add items

Open the [install] folder and add the items & their images to your inventory

Are you on esx - Remember to add the .sql to your database.

-- [FOOD INGREDIENTS]
['cheese'] = {
    label = 'Cheese Slices',
    weight = 10,
},
['mozzarella'] = {
    label = 'Mozzarella',
    weight = 10,
},
['lettuce'] = {
    label = 'Lettuce',
    weight = 10,
},
['mushrooms'] = {
    label = 'Mushrooms',
    weight = 10,
},
['ham'] = {
    label = 'Ham',
    weight = 10,
},
['meat'] = {
    label = 'Meat',
    weight = 10,
},
['pepperoni'] = {
    label = 'Pepperoni',
    weight = 10,
},
['seafoodmix'] = {
    label = 'Seafood Mix',
    weight = 10,
},
['tomato'] = {
    label = 'Tomatos',
    weight = 10,
},
['tomatosauce'] = {
    label = 'Tomato Sauce',
    weight = 10,
},
['oil'] = {
    label = 'Oil',
    weight = 10,
},
['flour'] = {
    label = 'Flour',
    weight = 10,
},
['sugar'] = {
    label = 'Sugar',
    weight = 10,
},
['salt'] = {
    label = 'Salt',
    weight = 10,
},
['dough'] = {
    label = 'Dough',
    weight = 10,
},
['pizzabase'] = {
    label = 'Pizza Base',
    weight = 100,
},
['durumbase'] = {
    label = 'Durum Base',
    weight = 100,
},

-- [FOOD]
['veganpizza'] = {
    label = 'Vegan Pizza',
    weight = 10,
},
['margharita'] = {
    label = 'Margharita Pizza',
    weight = 10,
},
['napollitano'] = {
    label = 'Napollitano Pizza',
    weight = 10,
},
['mushroompizza'] = {
    label = 'Mushroom Pizza',
    weight = 10,
},
['oceanpizza'] = {
    label = 'Ocean Pizza',
    weight = 10,
},
['deeppan'] = {
    label = 'Deep Pan Pizza',
    weight = 10,
},
['durum'] = {
    label = 'Durum',
    weight = 10,
},

-- [DRINKS]
['ice'] = {
    label = 'Ice',
    weight = 10,
},
['pineapplejuice'] = {
    label = 'Pineapple Juice',
    weight = 10,
},
['lemon'] = {
    label = 'Lemon',
    weight = 10,
},
['lime'] = {
    label = 'Lime',
    weight = 10,
},
['mint'] = {
    label = 'Mint',
    weight = 10,
},
['cocomilk'] = {
    label = 'Coco Milk',
    weight = 10,
},
3

Add jobs

Open the [install] folder and add the jobs to your core resource

Are you on esx - Remember to add the .sql to your database.

-- [Install into: qb-core/shared/jobs.lua] --
coretto = {
	label = 'Cafe Coretto',
	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 },
	},
},
4

Restart server

  • Add this script into your main resources directory (usually ../resources)

  • Open server.cfg and add start or ensure apex_bite

  • Restart your server.

Last updated