⚙️Full Configuration Breakdown
🔹config.lua (Server-Side)
config.lua (Server-Side)-- Notification duration (default: 5 seconds)
Config.DefaultDuration = 5000 -- in milliseconds
-- Framework detection (supports ESX/QBCore/standalone)
Config.Framework = {
AutoDetect = true, -- Automatically detect ESX/QBCore
Type = "newesx", -- Manual override: "oldesx", "newesx", "qbcore"
ESXExport = "es_extended", -- ESX resource name
QBCoreResource = "qb-core" -- QBCore resource name
} Config.TeamChat = {
Enabled = true,
Command = "tc", -- Command: /tc [message]
AllowedGroups = { -- Staff groups with access
["admin"] = true,
["mod"] = true
},
ShowSteamID = true, -- Log SteamID to deter trolling
Cooldown = 3000, -- 3-second delay between messages
Prefix = "[STAFF]" -- Chat message prefix
} 🔸 html/config.js (Client-Side UI)
html/config.js (Client-Side UI)3. translation.lua (Multi-Language)
translation.lua (Multi-Language)🔧 Common Config Scenarios
🚦 Troubleshooting
Last updated