Add Jobs
A guide of how to add supported jobs
The system support multiple jobs to use it in once
Grab a job from the "Jobs" section in the config (i will just grab the default one)
The "police" on the top of the section is the job name (not label). to make another job compatible change this to the job name you want
The "callsigns" section allows you to make officer's callsign a different color based of it's number
["Command"] = { min = "200", max = "205", color = "#ff0000" },
First of all there is the index (which is not effecting anything but make sure it's doesn't exists twice) Second, there is the minimum and maximum range of the callsign. If for example my callsign is "203" and the range is between "200" and 205", my callsign color will be "#ff0000
" (which is a red color) You can add as many colors as you like to the same jobThe "channels" section allows you to divide your officers to groups based on their radio channel (Make sure the -1 channel will always exist in your job because it's the default one)
["4"] = { description = "Command Channel" },
The number is the radio channel (You can use channels with floats such as 142.3 and etc), if you put 0 in the channel number, only people with their radio turned off will show there The description is the name of this specific group.
And that's the whole process.
Last updated