-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.js.example
More file actions
78 lines (63 loc) · 2.14 KB
/
config.js.example
File metadata and controls
78 lines (63 loc) · 2.14 KB
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
const config = {
// Bot Owner(s), level 10 by default. Array of user ID strings.
owners: ['ownerId'],
// Bot Admins, level 9 by default. Array of user ID strings.
admins: ['adminId'],
// Bot Support, level 8 by default. Array of user ID strings
support: ['supportId'],
// Your Bots Token. Available on https://discordapp.com/developers/applications/me
token: '',
// Github API Token
github: '',
// TMDb API Token
TMDb: '',
// OpenWeather API Token
OpenWeather: '',
// Discord webhook to send bot logs to
// Leave blank to not send logs to a webhook.
botLogsWebhookURL: '',
// botpanel.xyz configuration
// This is completely optional.
BotPanelID: '',
BotPanelSecret: '',
BotPanelURL: 'https://botpanel.xyz/dashboard/Mythical',
// Web server port (Leave blank, used for sending data to the mythical website)
Port: '',
// Wordnik API Token
Wordnik: '',
// MySQL Database Configuration
mysql: {
host: 'localhost',
port: '3306',
user: 'mythical',
password: 'youshallnotpass',
database: 'MythicalBot',
},
// Lavalink nodes
nodes: [
{
authorization: 'youshallnotpass',
host: 'localhost',
port: 2333,
id: 'main',
},
],
// Default per-server settings. These settings are entered in a database on first load,
// And are then completely ignored from this file. To modify default settings, use the `conf` command.
// DO NOT REMOVE THIS BEFORE YOUR BOT IS LOADED AND FUNCTIONAL.
defaultSettings: {
prefix: '*',
modRole: 'Moderator', // This can also be a role ID
adminRole: 'Administrator', // This can also be a role ID
welcomeEnabled: 'false',
welcomeChannel: 'welcome-leave', // This can also be a channel ID
welcomeMessage: 'Hello {{user}} ({{globalName}}), welcome to {{guild}}. We hope you have a great time here!',
leaveChannel: 'welcome-leave', // This can also be a channel ID
leaveMessage: 'Goodbye {{user}} ({{globalName}}) :( Sorry to see you go.',
leaveEnabled: 'false',
embedColor: '#0099CC',
embedErrorColor: '#FF0000',
embedSuccessColor: '#00FF00'
},
};
module.exports = config;