Config

In this section you can find config files

config.lua

Config = {
    website = "uniq",
    domain = ".tebex.io",

    kmh = true, -- if false, mph will be used for speedometer

    Keys = {
        [1] = {
            icon = "fas fa-mobile-screen",
            key = 288, -- https://docs.fivem.net/docs/game-references/controls/
            keyLabel = "F1"
        },
        [2] = {
            icon = "fas fa-bars",
            key = 301,
            keyLabel = "M"
        },
        [3] = {
            icon = "fas fa-bag-shopping",
            key = 20,
            keyLabel = "Z"
        },
        [4] = {
            icon = "fas fa-street-view",
            key = 47,
            keyLabel = "G"
        },
        [5] = {
            icon = "fas fa-lock",
            key = 182,
            keyLabel = "L"
        },
        [6] = {
            key = 105,
            keyLabel = "X" -- cruise control
        },
        [7] = {
            key = 182,
            keyLabel = "L" -- lock vehicle
        }
    },

    Electric_Cars = {
        "cyclone"
    },

    GreenZones = {
        {['x'] = 1846.8467, ['y'] = 3662.0959, ['z'] = 34.1904}
    },
    Radius = 50
}

Last updated