# Configuration

### cl\_config.lua:

```lua
CONFIG = {}

CONFIG.Timeout = 5 -- Jede 5 Sekunden Cooldown

CONFIG.Jobs = {
    ["police"] = {
        ["time"] = 10000, -- In Millisekunden : 10 Sekunden
        ["title"] = "LSPD - Police Department",
        ["ranks"] = {
            [9] = true,
            [8] = true,
        }
    },
    ["sheriff"] = {
        ["time"] = 10000,
        ["title"] = "BCSD - Sheriff Department",
        ["ranks"] = {
            [8] = true,
            [7] = true,
        }
    }
}

CONFIG.BlackList = {
    "<",
    ">",
}
```

### sv\_config.lua:

```lua
CONFIG_S = {}

CONFIG_S.Discord = {
    ["name"] = "Fraction Announce",
    ["color"] = 0x00ff00,
    ["avatar_url"] = "https://cdn.discordapp.com/attachments/1078730384650539008/1270102181319807117/burger.png",
    ["webhook"] = "WEBHOOK",
}
```
