Configuration

cl_config.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:

Last updated