For the complete documentation index, see llms.txt. This page is also available as Markdown.

configCode1080.lua

-- The `1080` command is used to request permission for a pit maneuver while chasing a vehicle. When you use the `1080` command, after the value set in the config is reached, the player will be allowed to perform the pit maneuver.
-- It's essentially an automatic dispatch system.

config.code1080 = {
    active = true,
    commands = {
        request = "1080",
        cancel = "1080c"
    },
    randomTime = { 360, 600 },  -- Second
    serverIntervalTime = 30000, -- miliseconds (min: 10000)
    msgDistance = 5,            -- When pit permission is granted, how many units around the requesting player should receive the notification?
    audio = {
        active = true,
        list = {
            tr = {
                "numbers", "second"
            },
            en = {
                "first", "numbers", "second"
            }
        }
    }
}

Last updated