-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfiguration.lua
More file actions
39 lines (34 loc) · 1.08 KB
/
Configuration.lua
File metadata and controls
39 lines (34 loc) · 1.08 KB
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
31
32
33
34
35
36
37
38
39
local Discordia = require("discordia")
Discordia.extensions()
--// Main bot stuff.
local Prefix = "!"
local Token = "Bot NzIyNTYzOTg2Mjg1MTMzOTQ1.Xuk6Jg.ybfcwMoDpI1g10_OwuLhnNRYKbk"
local ServerId = "739623766807674910"
local Colors = {
Red = Discordia.Color.fromRGB(255, 75, 75).value,
Orange = Discordia.Color.fromRGB(255, 165, 0).value,
Yellow = Discordia.Color.fromRGB(255, 255, 0).value,
Green = Discordia.Color.fromRGB(90, 255, 60).value,
Blue = Discordia.Color.fromRGB(0, 255, 255).value,
Purple = Discordia.Color.fromRGB(100, 0, 255).value,
Pink = Discordia.Color.fromRGB(255, 0, 220).value
}
local Roles = {
Staff = "739623766807674916",
SwagBruhs = "739623766807674915",
Donator = "739623766807674913",
Access = "739623766807674912",
Member = "739623766807674911"
}
local Channels = {
WelcomeAndGoodbye = "739623767109533778",
ChangeLogs = "739623767277305956"
}
return {
Prefix = Prefix,
Token = Token,
ServerId = ServerId,
Colors = Colors,
Roles = Roles,
Channels = Channels
}