-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.js
More file actions
34 lines (25 loc) · 817 Bytes
/
config.js
File metadata and controls
34 lines (25 loc) · 817 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
31
32
33
34
module.exports = (client) => {
const config = {
// Anything in this file can be called by using `client.settings.<name>`
// Eg. client.settings.token
// Set Token Variable
"token": process.env.BOT_TOKEN,
// Youtube API Toke:
"ytapi": process.env.YT_TOKEN,
// Server ID
"serverID": "524880564302381056",
// Set bots prefix
"prefix": "+",
// Set bot status, choose from: "online", "away", "dnd", "invisible"
"botStatus": "dnd",
//set bot activity type, choose from: "PLAYING", "LISTENING", "WATCHING"
"botActivity": "WATCHING",
// Youtube ID
"youtubeID": "UC9S1O55MD9kzL5wRDFL_o5A",
//Commonly used channels, call them with `client.setting.channels.<name>`
"channels": {
"modLogChannel": "mod-log"
}
};
return config
}