Config.lua
Themes as seen on Verification Themes & Queue Themes
id
: The Server's Discord ID.botToken
: The bot's token used to authenticate and interact with Discord.whitelistRoles : Players must have a specific Discord role to join the server.
Example: Users with role
"1309348868642832424"
must have it to enter the queue.
priorityRoles
: Defines different levels of queue priority based on Discord roles."1309348868642832424"
has a priority of 1000 (probably admins, staff, or VIPs)."1329131881517678603"
has a priority of 1 (likely a lower-priority role).
Priority System Explanation:
Higher numbers mean a higher chance of being placed at the front of the queue.
A player with priority
1000
will get in much faster than one with priority1
.
stackPrio = false
:true
: If a player has multiple priority roles, their priority points stack.false
: Only the highest priority role is considered.
JoinDelay = 60000
:60 seconds (60000 ms) delay before allowing a new connection.
Prevents spam joins and rapid queue refreshes.
enabled = true
: Crash handling is active.priority = 10
: Players who crash get a priority of 10 when reconnecting.revokeTime = 300
: After 5 minutes (300 seconds), their crash priority is revoked.This ensures players who crash don't exploit priority indefinitely.
cache = true
:Enables caching of Discord data (faster lookups instead of requesting every time).
cacheTimeout = 120
:Discord data is cached for 120 seconds (2 minutes) before refreshing.
Cooldown = 3
:Each player must wait 3 seconds before attempting to connect again to prevent spam connections.
Last updated