Config File

Config = {}

Config.AmazingScripts = true
Config.VersionChecker = true

-- Commands
Config.ReportCommand = 'report' -- Command for reporting a player
Config.ReportsMenuCommand = 'reports' -- Command for admins to view reports
Config.BugCommand = 'bug' -- Command to open the bug report menu

-- Framework selection: 'QB', 'ESX' or 'STANDALONE'
Config.Framework = "QB"

-- Permission Groups (used for ESX and QBCore)
Config.PermissionGroups = {
    'god',
    'superadmin',
    'admin',
    'mod'
}

-- Standalone Identifiers (for STANDALONE framework)
Config.StandaloneIdentifiers = {
    ['license:abcdefghijklmnopqrstuvwxyz'] = true, -- Replace with actual identifiers
    ['license:0123456789'] = true  -- Replace with actual identifiers
}

Config.BugReportTypes = { -- Customizable dropdown options
    "Script Bug",
    "Clothing Bug",
    "Weapon Bug",
    "Vehicle Bug",
    "MLO Bug"
}

-- Enable/Disable Features
Config.EnableReport = true
Config.EnableBugReport = true

Last updated