Add Jobs
A guide of how to add supported jobs
```lua
["police"] = {
Callsigns = { -- This is to change the callsign color based on the callsign (it only works with numbers), the normal color cannot be changed (If you don't want it comment everything inside of it)
["Command"] = { min = "200", max = "205", color = "#ff0000" }, -- Make sure the "min" and "max" are string and the color is an hex color (BTW The index name doesn't matter but make sure it doesn't stays the same)
["SWAT"] = { min = "350", max = "399", color = "#000000" }, -- Make sure the "min" and "max" are string and the color is an hex color (BTW The index name doesn't matter)
},
Channels = { -- This is for the groups, the index is the radio number. MAKE SURE THE INDEX IS A STRING
["-1"] = { description = "Main Channel" }, -- This is a regular channel, here you will find people who are in channels you have not defined
["4"] = { description = "Command Channel" }, -- Placeholder channel, dpulicate or change if you want to
["5"] = { description = "Pursuit Channel" }, -- Placeholder channel, dpulicate or change if you want to
["0"] = { description = "Off Radio Channel" } -- This is a channel that is not on the radio, it is used for people who are not on the radio
}
},
```Last updated