> For the complete documentation index, see [llms.txt](https://jl-store.gitbook.io/jl-illegalphone/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jl-store.gitbook.io/jl-illegalphone/jl_spectatemenu/config.lua.md).

# config.lua

```lua
Config = {}

Config.Language = "en" -- locales/translations/    en.lua
Config.Notify = "okok" -- okok, quasar or qb (you can modify this yourself in server/sv_utils.lua)
Config.QBCoreFile = 'qb-core' 

-- To add another job you also have to add it in the Config.json file.
Config.JobCategories = {
    police = 'police',
    ambulance = 'ambulance',
    mechanic = 'mechanic',
}


Config.Staff = {
    {'admin', 'god'} -- Whatever role you want to be displayed as Staffs.
}

Config.Commands = {
    OpenSpec = {
        command = "spec",
        permission = "admin", "god",
    },

    StopSpec = {
        command = "specoff",
        permission = "admin", "god",
    },
}

-- Webhook for logs is in server/sv_utils.lua
```
