forked from amberlat/Discom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js.example
43 lines (35 loc) · 1.36 KB
/
config.js.example
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
module.exports = {
// *Required* Bot token, used for being able to use the bot.
// Can be found in your bots application page. https://discordapp.com/developers/applications/me
TOKEN: '',
// Cleverbot API key, used for talking with `!chat`.
// Get a key here. https://www.cleverbot.com/api
CLEVERBOT: '',
// Almanax Channel ID, used for showing Almanax daily.
// Must be an empty channel where no one except the bot can send messages.
ALMANAX: '',
// Twitter Channel IDs, used for deleting retweets and mentions, useful if using Twitter Webhooks.
// Can be set for one or two channels.
TWITTER_ONE: '',
TWITTER_TWO: '',
// SERVER ID, used for the Streaming Role functionality.
SERVER: '',
// Streaming Role ID, used for giving a role to people who are currently streaming, usually to display them above.
// The role must be made on Discord yourself.
STREAMING_ROLE: '',
// Streamer Role ID, used for limiting the Streaming role to people who have this role.
// If this is not set then the role will be given to anyone in the server who is streaming.
STREAMER_ROLE: '',
// Admin/Moderator Role IDs, used for limiting the message deleting command to people who have this role.
ADMIN: '',
MODERATOR: '',
// Christmas Lights.
C_ONE: '',
C_TWO: '',
C_THREE: '',
C_FOUR: '',
C_FIVE: '',
C_SIX: '',
C_SEVEN: '',
C_EIGHT: ''
};