gearConfiguration

chevron-rightConfiguration Overviewhashtag
Config.MultiJob = {
    --[[
      if open type is "custom" then you need to write a custom logic to open the menu in src/client/cl_edit.lua
    ]]
    OpenType = "command", -- command | keybind | location | custom
    Command = {
        name = "multijob", -- command name
        description = "Open the multi job menu",
        showInHelp = false -- if true, the command will be shown in slash command help
    },
    KeyBind = 327, -- F5 - https://docs.fivem.net/docs/game-references/controls/
    Location = {
        coords = {
            vec4(-1103.4449, -809.6194, 17.9186, 77.5161),
            -- add more if you want
        },
        ped = {
            enable = true, -- if you want to enable ped then set to true
            model = "a_m_m_business_01",
            scenario = "WORLD_HUMAN_CLIPBOARD"
        }
    },
    UnemployedJob = {
        name = "unemployed",
        grade = 0
    },
    -- These jobs can't be removed from the menu
    NonRemovableJobs = {
        "unemployed", -- do not remove this
        "police",
    },
    MaxJobs = 3 -- max jobs that can be added as secondary jobs
}

Last updated