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 job delivery location 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 job delivery location
    ['Example Delivery Location'] = { name = 'example_job_delivery', }, 
    --location name 'Example Delivery Location' as the key
    --job name 'example_job_delivery' in core/jobs/lua as the value
},

Last updated