Configuration

You can customize the script according to your needs. If you can not adjust something or there are errors, feel free to contact us on our Discord server.

Config file

Config = {}

Config.Locale = 'en'
Config.LogToDatabase = true
Config.UseOX = true

Config.Timestamp = '%d/%m/%Y %X' -- See formatting here: https://www.lua.org/pil/22.1.html

Config.DiscordLogURL = ''

Config.Marker = {
    Size = {x = 1.5, y = 1.5, z = 1.0},
    Color = {r = 255, g = 255, b = 255},
    Type = 1 -- Change to your needs: https://docs.fivem.net/docs/game-references/markers/
}

Config.Locations = {
    {
        label = "Mechanic",
        society = "society_mechanic",
        message = 'Press ~INPUT_CONTEXT~ to deposit to the ~y~mechanic ~w~account',
        positions = {
            vector3(-361.8973, -162.0486, 38.1203),
            -- Add more
        }
    },
    {
        label = "Police",
        society = "society_police",
        message = 'Press ~INPUT_CONTEXT~ to deposit to the ~b~police ~w~account',
        positions = {
            vector3(17.4047, 1.4380, 70.3155),
            -- Add more
        }
    },
    {
        label = "Ambulance",
        society = "ambulance_account",
        message = 'Press ~INPUT_CONTEXT~ to deposit to the ~r~ambulance ~w~account',
        positions = {
            vector3(300.2020, -579.2261, 43.2608),
          -- Add more
        }
    },
    -- Add more
}

Official Locales

Last updated