Fivem
Config
Miscellaneous

debugMode

Enables console prints for all the major actions that the script is enacting, useful if somehow something broke

config.lua
Config = {
    debugMode = true
}
  • debugMode: boolean
    • If the feature should be enabled

isStaff

Settings for the isStaff export

config.lua
isStaff = {
    enable = true,
    type = "playerAce",
    values = {
        ["playerAce"] = ace,
        ["esxJob"] = job,
        ["esxGroup"] = group,
    }
}