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,
}
}- enable:
boolean- If the feature should be enabled
- type:
string- What type of action should be executed when calling the export (see values)
- ace:
string- The player ace it should check for, check FiveM's docs (opens in a new tab) for more info
- job:
string- The job name it should check for, check ESX's documentation (opens in a new tab) for more info
- group:
string- The group name it should check for, check ESX's documentation (opens in a new tab) for more info