-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathconfig.js
More file actions
66 lines (61 loc) · 1.29 KB
/
config.js
File metadata and controls
66 lines (61 loc) · 1.29 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
// config.js
module.exports = {
token: process.env.DISCORD_TOKEN,
prefix: "!",
enablePrefix: true,
supportServer: "https://discord.gg/9MVAPpfs8D",
activity: {
name: "/help",
type: "LISTENING" // PLAYING, LISTENING, WATCHING, STREAMING, COMPETING
},
express: {
enabled: true,
port: 5000
},
emojis: {
play: "▶️",
pause: "⏸️",
stop: "⏹️",
skip: "⏭️",
queue: "📜",
music: "🎵",
loop: "🔁",
shuffle: "🔀",
volume: "🔊",
success: "✅",
error: "❌",
info: "ℹ️"
},
aliases: {
play: ['p'],
pause: ['pa'],
resume: ['r', 'res'],
skip: ['s', 'next'],
stop: ['st', 'leave', 'disconnect'],
volume: ['v', 'vol'],
queue: ['q'],
nowplaying: ['np', 'current'],
shuffle: ['sh', 'mix'],
loop: ['l', 'repeat'],
remove: ['rm', 'delete'],
move: ['mv'],
clearqueue: ['cq', 'clear'],
'247': ['24/7', 'stay'],
stats: ['status', 'info'],
ping: ['latency'],
invite: ['inv'],
support: ['server'],
help: ['h', 'commands', 'cmd']
},
lavalink: {
nodes: [
{
name: "Main Node",
host: "lavalinkv4.serenetia.com",
port: 80,
password: "https://seretia.link/discord",
secure: false
}
]
}
};