config.lua

Config = {}
Config.Language = "en" 
Config.TextUI = 'ox_lib' -- okok, ox_lib, none (you can modify this in cl_main.lua)
Config.useLBPhone = false -- if false it will use playerdata since that's what most phones use.

Config.CurrencyFormat = "en"
Config.CurrencySymbols = { -- You can edit this in main/cl_main.lua if you want to.
    sv = "kr",
    en = "$",
}

Config.Jobs = {
    ["police"] = { 
        position = {
            use = true, -- If you want to use a keybind when closing in to the position to open the menu.
            pos = vector3(-165.31, 1033.05, 232.01),
            keybind = 38 -- https://docs.fivem.net/docs/game-references/controls/
        },

        command = {
            use = true, -- If you want to use command to open the menu.
            name = "dutymenu", -- The command to open the menu (only works if use = true)
        },
    },

    ["ambulance"] = {
        position = {
            use = true,
            pos = vector3(-165.31, 1033.05, 232.01),
            keybind = 38 -- https://docs.fivem.net/docs/game-references/controls/
        },

        command = {
            use = true,
            name = "dutymenu",
        },
    },

}

Last updated