sv_config.lua
Preview
--[[ ===================================================================
DISCORD INTEGRATION - SERVER CONFIGURATION
===================================================================
Important settings for Discord integration and role synchronization
Security Warning: Keep your bot token private and never share it.
If you suspect your token has been compromised, regenerate it
immediately in the Discord Developer Portal.
]]--
ServerConfig = {
-- Discord Bot Token (required for API authentication)
-- Get this from: https://discord.com/developers/applications
-- 1. Create an application
-- 2. Go to Bot section
-- 3. Create a bot and copy the token
BotToken = "",
-- Discord Webhook URL (for logging and notifications)
-- Create this in your Discord server:
-- 1. Server Settings > Integrations > Webhooks
-- 2. Create a new webhook and copy the URL
WebHook = "https://discord.com/api/webhooks/1349543381168291883/leKV9jqd1q5gtVJKw7Ve6VtniCLbFcURrydcvXraettKfX_C0SI3W5XS-S8wkoetYIsY",
-- Discord Guild/Server ID
-- Enable Developer Mode in Discord:
-- 1. User Settings > Advanced > Developer Mode
-- 2. Right-click on your server icon and select "Copy ID"
GuildID = "1008033483203039273",
}
Last updated
Was this helpful?