How to add new Job to Dispatch

Here is how to solve it!

  1. First, go to karma-dispatch/shared/config.lua and add the job at the Config.WhitelistJobs

  2. Go to karma-dispatch/server/editable.lua and at the end of the code at

if GetJob(user) == 'police' then
  • You can do like this (to add a sheriff job) :

if GetJob(user) == 'police' or GetJob(user) == 'sheriff' then

Last updated