โš™๏ธConfiguration

Check the standard Config!

Config.lua
Config = {}

Config.Information = {
    language = "de",
    Notifys = "sservice",
    pricetopay = 100,
    allowbank = false
}

Config.Locations = {
    {
        name = "Paleto Bay",
        location = vector3(1776.356080, 3327.177978, 41.428588),
        pedormarker = true,
        -- True equals with ped. False is marker
        ped = GetHashKey("s_m_m_fiboffice_02"),
        heading = 294.80316,
        Marker = {
            markertype = 1, -- https://docs.fivem.net/docs/game-references/markers/
            markersize = vector3(1, 1, 1),
            markercolor = {r = 1, g = 1, b = 1}
        },
        closed = false, -- If true the rename station is closed
        Blip = {
            active = true, -- Enable or disable (true, false)
            Blipsprite = 119, -- https://docs.fivem.net/docs/game-references/blips/
            BlipColor = 37,
            BlipScale = 1.0,
            BlipName = "Rename Station"
        },
        Aceandgroupcontrol = false,
        Acegroup = {
            {
                name = "admin"
            }
        }
    }
}
Config.BlacklistetNames = {
    {
        name = "Cheats"
    },
    {
        name = "Service"
    }
}

If you find any errors in the configuration and you can't fix them yourself, open a ticket!

Last updated