forked from jmiln/SWGoHBot
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_example.js
67 lines (56 loc) · 1.98 KB
/
config_example.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
const config = {
// The Discord ID for the bot owner (Gets max perms/ can use Dev commands)
"ownerid": "YourUserID",
// Array of discord ID strings
"vipList": [],
// The prefix for commands (';' is used as ;help, '+' for +help etc. )
"prefix": "YourPrefixGoesHere",
// The bot's token. Get it from https://discordapp.com/developers/applications/me
"token": "YourTokenGoesHere",
// The postgres DB for the server configs and such
"database": {
"host": "localhost",
"user": "username",
"pass": "password",
"data": "database"
},
// The default per-guild settings
"defaultSettings": {
"prefix": ";",
"adminRole": ["Administrator"],
"enableWelcome": false,
"welcomeMessage": "Say hello to {{user}}, everyone! We all need a warm welcome sometimes :D",
"enablePart": false,
"partMessage": "Goodbye {{user}}, thanks for stopping by!",
"useEmbeds": true,
"timezone": "America/Los_Angeles",
"announceChan": "",
"useEventPages": false,
"eventCountdown": [2880, 1440, 720, 360, 180, 120, 60, 30, 10, 5],
"language": "en_US",
"swgohLanguage": "ENG_US"
},
// If you want to send error/ create/ delete message to a log channel
"logs": {
"logToChannel": false,
"channel": "channel-ID-to-log-to",
"logComs": false
},
// If you want to use the ;changelog command
"changelog": {
"changelogChannel": "channel-to-send-to",
"sendChangelogs": false
},
// Need Bill's magic stuffs for this
// "swgohAPILoc": "",
// "swgohSettings": {},
//
// Need a Patreon account for this
// "patreon": { │50 // "host" : "",
// "clientID": "",
// "clientSecret": "",
// "creatorAccessToken": "",
// "creatorRefreshToken": ""
// }
};
module.exports = config;