Installation Guide

Step 1: Dependencies

To get started with Moon-UpNAtom, make sure you have the following dependencies installed:


Step 2: Job Configuration

  • Add the following configuration for the "Up N Atom" job in qb-core/shared/jobs.lua:

['upnatom'] = {
    label = 'Up N Atom',
    defaultDuty = false ,
    offDutyPay = false,
    grades = {
        ['0'] = {
            name = 'Waiter',
            payment = 50
        },
        ['1'] = {
            name = 'Chef',
            payment = 50
        },
        ['2'] = {
            name = 'Manager',
            isboss = true,
            payment = 50
        },
        ['3'] = {
            name = 'Owner',
            isboss = true,
            payment = 50
        },
    },
},

Step 3: Item Configuration

Add the following items in qb-core/shared/items.lua:

  • Drinks


  • Chicken


  • Burgers


  • Breakfasts


  • Ingredients

Last updated