Adding Job

This page contains the job configuration you need to add to your server. Download the file or copy the code from the tab that matches your framework and add it to the correct location.

Add the following job to your qb-core/shared/jobs.lua file:

raycrest = {
    label = 'Raycrest Restaurant',
    type = 'restaurant',
    defaultDuty = false,
    offDutyPay = false,
    grades = {
        ['0'] = { name = 'Waiter', payment = 50 },
        ['1'] = { name = 'Cook', payment = 75 },
        ['2'] = { name = 'Chef', payment = 100 },
        ['3'] = { name = 'Head Chef', payment = 125 },
        ['4'] = { name = 'Assistant Manager', payment = 150 },
        ['5'] = { name = 'Manager', isboss = true, payment = 175 },
        ['6'] = { name = 'Owner', isboss = true, payment = 200 },
    },
},

Last updated