⚙️Configuration

The Script includes also a big language/locales configuration where you can change any text of our script!

Config = Config or {};

Config.Debug = true
Config.Framework = {
    type = "esx",
    path = "es_extended",
    accounts = {
        money = "money",
        bank = "bank",
        black_money = "black_money"
    }
}

Config.Command = "personalmenu"
Config.Keybind = "F5"

Config.Notify = function(message)
    TriggerEvent("esx:showNotification", message)
end

Config.Licenses = { -- insert the licenses players should be able to show others
    {
        value = "firearm",
        label = "Waffenschein",
    },
    {
        value = "drive",
        label = "Führerschein",
    },
    {
        value = "duty",
        label = "Dienstausweis",
    }
}

Config.Menu = {
    ShowDynamicTitle = true,
}

Config.UseTwoJobsSystem = true

If you have any configuration questions or errors, feel free to open a ticket on our Discord!

Last updated