roles/node_stuff/templates/melody.yml.j2 (view raw)
1# Your Discord bot token (Found at https://discord.com/developers/applications)
2botToken: "{{ melody_bot_token }}"
3
4# Your Discord bot client ID
5clientId: "{{ melody_client_id }}"
6
7# Your Genius API client access token (Found at https://genius.com/developers)
8geniusApiKey: "{{ melody_genius_access_token }}"
9
10# The colour to use for embeds sent by the bot
11embedColour: "#2F3136"
12
13# Whether analytics should be sent when starting the bot
14# See https://github.com/NerdyTechy/Melody/wiki/Analytics
15enableAnalytics: false
16
17# Settings to control the bot's player and controller
18player:
19 # Leave VC when a song ends
20 leaveUponSongEnd: true
21 # Leave VC when a song is stopped
22 leaveUponSongStop: true
23 # Leave VC after X ms of inactivity
24 leaveOnEmptyDelay: 300000 # 5 minutes
25 # Deafen bot while playing
26 deafenBot: false
27
28# The emojis to be used in buttons for certain embeds
29# See https://github.com/NerdyTechy/Melody/wiki/Using-Custom-Emojis
30emojis:
31 stop: "⏹"
32 skip: "⏭"
33 queue: "📜"
34 pause: "⏯"
35 lyrics: "📜"
36 back: "⏮"