-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
46 lines (38 loc) · 945 Bytes
/
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
/**@type {import('types').IConfiguration}*/
const config = {
// Display additional information about the bot's actions?
DetailedLogging: true,
// Bot token
Token: 'Enter your token here',
// Text displayed in bot status
ActivityText: 'https://github.com/makarasty',
// How often the status of the bot should be updated in ms
ActivityUpdateInterval: 100_000,
// How often channels must be changed in ms
ChannelsRenameInterval: 401_000,
// Server information
Guilds: [
// Guild 1
{
GuildId: '785107327413911592',
Channels: [
{
// Channel ID
Id: '1087742580340555857',
// Channel name with patterns
Name: 'Offline {guild-users-presence-offline}',
},
{
Id: '1087742598212489298',
Name: 'Online {guild-users-presence-online}',
},
{
Id: '1088202692142313553',
Name: 'Dnd {guild-users-presence-dnd}',
},
]
},
// Guild 2...
]
}
module.exports = config