Karma Developments
DiscordStore
  • Welcome
  • Script Guides
    • Karma Developments Clothing System
      • Install
      • How to change clothing images?
    • Karma Developments Dispatch System
      • Install
      • How to add new Job to Dispatch
      • How to add alerts in my other scripts?
    • Karma Developments Server-Side Graphics Overhaul System
      • Install
      • How to fix grass on roads?
      • Getting crashs?
    • Karma Developments NPC Dialog System
      • Install
      • How to add the images of items at STORES?
    • Karma Developments Garage & Impounds System
      • Install
      • How to create a new garage?
      • How to show vehicles at my qb-phone?
    • Karma Developments Tablet System
      • Install
      • How to add a App UI in Tablet?
  • ABOUT
    • All Links
Powered by GitBook
On this page
  1. Script Guides
  2. Karma Developments Dispatch System

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

PreviousInstallNextHow to add alerts in my other scripts?

Last updated 18 days ago