forked from RfadnjdExt/stardust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.js
74 lines (66 loc) · 2.34 KB
/
config.sample.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
67
68
69
70
71
72
73
74
module.exports = {
TOKEN: "",
ownerID: [""], //write your discord user id. example: ["id"] or ["id1","id2"]
botInvite: "", //write your discord bot invite.
supportServer: "", //write your discord bot support server invite.
mongodbURL: "", //write your mongodb url.
status: "your voice",
commandsDir: "./commands", //Please don't touch
language: "id", //en, tr, nl, pt, fr, ar, zh_TW, it
embedColor: "ffa954", //hex color code
errorLog: "", //write your discord error log channel id.
editedChannelId: "", //for logs
deletedChannelId: "", //for logs
sponsor: {
status: false, //true or false
url: "" //write your discord sponsor url.
},
voteManager: {
//optional
status: false, //true or false
api_key: "", //write your top.gg api key.
vote_commands: [
"back",
"channel",
"clear",
"dj",
"filter",
"loop",
"nowplaying",
"pause",
"play",
"playlist",
"queue",
"resume",
"save",
"search",
"skip",
"stop",
"time",
"volume"
], //write your use by vote commands.
vote_url: "" //write your top.gg vote url.
},
shardManager: {
shardStatus: true //If your bot exists on more than 1000 servers, change this part to true.
},
playlistSettings: {
maxPlaylist: 10, //max playlist count
maxMusic: 75 //max music count
},
opt: {
DJ: {
commands: ["back", "clear", "filter", "loop", "pause", "resume", "skip", "stop", "volume", "shuffle"] //Please don't touch
},
voiceConfig: {
leaveOnFinish: false, //If this variable is "true", the bot will leave the channel the music ends.
leaveOnStop: false, //If this variable is "true", the bot will leave the channel when the music is stopped.
leaveOnEmpty: {
//The leaveOnEnd variable must be "false" to use this system.
status: true, //If this variable is "true", the bot will leave the channel when the bot is offline.
cooldown: 10000000 //1000 = 1 second
}
},
maxVol: 150 //You can specify the maximum volume level.
}
};