Page cover

πŸ’ΌJobs

  • Adding more jobs to the resource is very simple via the config.lua file

  • You must ensure the job name you wish to use is in your core/jobs.lua to function correctly

  • To add another job simply add your bar name as they key and the name of your job as the value for name to the JOBS section in Config.CoreSettings


Jobs = {  
    --this is the example bar
    ['Example Restaurant'] = { name = 'example', }, 
    --restaurant name 'Example Restaurant' as the key
    --job name 'example' in core/jobs/lua as the value
},

Last updated