-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.example.js
59 lines (46 loc) · 957 Bytes
/
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
/*
Made by: FlaringPhoenix#0001
*/
// Do not change
let author = "FlaringPhoenix#0001";
// Basic options (all required)
let botName = "ControlPanel";
let owners = ["707022994421186651"];
// Token
let token = "";
// Time format for console logging
let timeFormat = "D MMM YYYY HH:mm:ss";
// Prefix for bot dms
let dmPrefix = "cp!";
// Your server links
let links = {
discord: "https://discord.gg/NEYMcRW",
website: "https://bluefoxhost.com",
}
// Default embed options
let embed = {
color: "#27a9e1",
footer: "ControlPanel"
}
// Toggle command trigger message
let deleteCommands = false;
// If a command is disabled the bot will ignore it
let disabledCommands = [];
// Toggle logging messages in console
let log = {
commands: true,
errors: true,
}
module.exports = {
author,
botName,
owners,
token,
timeFormat,
dmPrefix,
links,
embed,
deleteCommands,
disabledCommands,
log,
}