-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathconfig.js
225 lines (211 loc) · 5.2 KB
/
config.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
const AUTH = require("./auth");
const PREFIX = "n!";
module.exports = {
PREFIX,
DisabledGroups: [],
DisabledCommands: [],
TABLES: [
"guild",
"user",
"channel",
"system"
],
ITEMS: {
guild: {
prefix: PREFIX,
alias: {},
mlchan: false,
mljoin: false,
mlleave: false,
mldm: false,
locale: "en",
userData: {},
tags: {},
perms: {},
requserperm: false,
modlog: false,
serverlog: false,
disabledEvents: {}, // Disabled modlog events
filters: {}, // The filters for messages
ar: false, // The auto role
blacklist: {}, // Ids that are blocked from the bot
rolemeroles: []
},
user: {
trivia: 0,
balance: 0,
},
channel: {
irc: false
},
system: {
timers: [],
usage: {}
},
},
LAVALINK_NODES: [
{ host: "localhost", port: 2333, region: "us", password: AUTH.LAVALINK }
],
FUNNBOT: "163735744995655680",
CUR: {
toString: () => "USD",
code: ":dollar:",
sym: "$"
},
MODLOG: mirrorObject([
"messageEdit"
]),
TIME: {
millisecond: 1,
second: 1000,
minute: 60000,
hour: 3600000,
day: 86400000,
week: 604800000,
year: 31536000000
},
HELP: {
help: "Tutorials",
config: "Configuration",
mod: "Moderation",
games: "Games",
fun: "Fun",
memes: "Memes",
image: "Images",
memberlog: "Member Log",
utility: "Utility",
poll: "Polls",
tag: "Tags",
irc: "IRC",
economy: "Economy",
help: "Tutorials",
filter: "Content Filter",
info: "Info",
crypto: "Crypto",
music: "Music"
},
//The "Companies" and their keys used in stock market
STOCKS: {
FNN: {
name: "FunnCorp",
base: 1.00
},
NTO: {
name: "Nitro",
base: 0.70
},
MPB: {
name: "MopBot",
base: 0.68
},
DSC: {
name: "Discord",
base: 0.64
},
PAN: {
name: "Pancake",
base: 0.60
},
MTN: {
name: "Martin",
base: 0.57
},
ALF: {
name: "Alfred",
base: 0.35
}
},
// the best emojis
EMOTES: {
NUMBERS: [
":zero:",
":one:",
":two:",
":three:",
":four:",
":five:",
":six:",
":seven:",
":eight:",
":nine:",
],
STATUS: {
online: "<:online:432677635282305027>",
offline: "<:offline:432677635580231690>",
idle: "<:away:432677635412328458>",
dnd: "<:dnd:432677636381212672>"
}
},
//Map permission names to a easier to read format
PERMISSIONS: {
ADMINISTRATOR: "Administrator",
CREATE_INSTANT_INVITE: "Create Instant Invite",
KICK_MEMBERS: "Kick Members",
BAN_MEMBERS: "Ban Members",
MANAGE_CHANNELS: "Manage Channels",
MANAGE_GUILD: "Manage Server",
ADD_REACTIONS: "Add Reactions",
VIEW_AUDIT_LOG: "View Audit Log",
VIEW_CHANNEL: "View Channel",
SEND_MESSAGES: "Send Messages",
SEND_TTS_MESSAGES: "Send TTS Messages",
MANAGE_MESSAGES: "Manage Messages",
EMBED_LINKS: "Embed Links",
ATTACH_FILES: "Attach Files",
READ_MESSAGE_HISTORY: "Read Message History",
MENTION_EVERYONE: "Mention Everyone",
USE_EXTERNAL_EMOJIS: "Use External Emojis",
CONNECT: "Voice Connect",
SPEAK: "Voice Speak",
MUTE_MEMBERS: "Voice Mute Members",
DEAFEN_MEMBERS: "Voice Deafen Members",
MOVE_MEMBERS: "Voice Move Members",
USE_VAD: "Use Voice Activity",
CHANGE_NICKNAME: "Change Nickname",
MANAGE_NICKNAMES: "Manage Nicknames",
MANAGE_ROLES: "Manage Roles",
MANAGE_WEBHOOKS: "Manage Webhooks",
MANAGE_EMOJIS: "Manage Emojis",
},
//Colors used in embed.randomColor
COLORS: {
NITRO: [
"#03A9F4",
"#039BE5",
"#0288D1",
"#0277BD",
"#2196F3",
"#1E88E5",
"#1976D2",
"#2962FF",
"#448AFF",
"#2979FF",
"#2196F3",
"#1E88E5",
"#1976D2",
"#1565C0",
"#0091EA"
],
ACTION: {
ban: "#B71C1C",
tempban: "#D32F2F",
softban: "#F44336",
kick: "#F57C00",
mute: "#FF9800",
warn: "#FDD835",
unban: "#76FF03"
},
MEMBERLOG: [
"#76FF03",
"#D32F2F"
]
},
...AUTH
};
function mirrorObject(array) {
let o = {};
for (let item of array) {
o[item] = item;
}
return o;
}