-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
30 lines (25 loc) · 780 Bytes
/
config.lua
File metadata and controls
30 lines (25 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Config = {}
-- What to show in the server info
Config.ShowWebsite = true
Config.ShowDiscord = true
Config.ShowTebex = true
Config.ShowSteam = true
Config.ShowMic = true
Config.ShowDevs = true
Config.ShowOwners = true
Config.ShowCustomInfo = true
--Social links (if shown)
Config.Website = "CHANGEME" -- ex. https://example.com
Config.DiscordInvite = "CHANGEME" -- ex. https://discord.gg/CHANGEME
Config.TebexLink = "CHANGEME" -- ex. https://example.tebex.io/
-- Requirements (if shown)
Config.MicRequired = "Yes"
Config.SteamRequired = "No"
Config.DiscordRequired = "No"
-- People (if shown)
Config.Developers = { "CHANGEME" }
Config.Owners = { "CHANGEME" }
-- Custom Information (Add/Remove whatever you want)
Config.CustomInfo = {
["Teamspeak IP"] = "0.0.0.0.0:0000",
}