-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.js
72 lines (71 loc) · 1.62 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
const path = require("node:path");
require("dotenv").config({ path: path.join(__dirname, '.env') });
module.exports = {
port: 80,
mongoURI: process.env.mongoURI,
sessionSecret: process.env.sessionSecret,
ownerids: ["01GPZ5PTPQ2RNMZEF02NKD7TQE","01FHZCM5J1T2DP08N9MCTYP4DT","01GQ3NS0EB3FF8V2Q6KHX887DS"],
clients: {
manager: {
prefix: "rbl!",
token: process.env.managerToken,
},
servers: {
prefix: "rsl!",
token: process.env.serversToken
}
},
selfbot: {
email: process.env.selfBotEmail,
password: process.env.selfBotPassword,
},
tags: {
bots: [
"Anime",
"Bridge",
"Multipurpose",
"Moderation",
"Giveaways",
"Music",
"Fun",
"Chatbot",
"Polls",
"Counting",
"Logging",
"Game",
"NSFW",
],
servers: [
'Community',
'Development',
'Social',
'Gaming',
'Emotes',
'Streaming',
'Anime',
'Fun',
'Roleplay',
'Givaway'
]
},
channels: {
weblogs: "01GQ1AKANW8TVTH6R2P79069K8",
votelogs: "01GXCM24QX3WZP1GBNFQEHSHME",
reportlogs: "01H1TSKW4XE35HNJAB3W8NM65D",
},
servers: {
main: "01GQ14WC58C8AXCWNJQBFDZNT3",
testing: "01GX1QRSHEA8NE8WCGHEPN3S19",
},
roles: {
bots: "01GX2QPE8SWZWPVN3DFQGJCMHC",
botsintesting: "01H0E1JT1C8TMAPNDJ15SCTA6W",
developers: "01GZS6GRA53KVMDB4XY38MRMAE",
members: "01GVC849ZNZYCC9BFYHNJSNNBB",
staff: "01GX1RXVPQV3TNCTXS109H50DW",
contributor: "01GZJ7Y5NFNB5JRHXYZWNGWZZZ",
partner: "01H1DJ15N9N21RY3AH9XFPQYB9",
certified: "01H1MG7T9CHX41XE36911GCT31",
botCertified: "01H1MG7YA13EC3M0R4EGKRKXBD",
},
};