-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.py
28 lines (20 loc) · 912 Bytes
/
config.py
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
# Add your bot token here
TOKEN = ''
# Add your spotify client id here
SPOTIFY_CLIENT_ID = ""
# Add your spotify client secret id here
SPOTIFY_CLIENT_SECRET_ID = ""
PREFIX = '.'
USER_NOT_IN_VOICE_CHANNEL = "Join a voice channel first in order to use this command!"
USER_NOT_IN_SAME_VOICE_CHANNEL = "You are not in the voice channel I am playing in!"
NO_AUDIO_IS_PLAYING = "No music is currently playing! Use *?play* to start playing some!"
BOT_NOT_IN_VOICE_CHANNEL = "I wasn't present in any voice channel to begin with!"
INVALID_INPUT = "No results were found."
# Error messages
USER_NOT_IN_SAME_VOICE_CHANNEL = "You are not in the voice channel I am playing in!"
USER_NOT_IN_VOICE_CHANNEL = "Join a voice channel first in order to use this command!"
INVALID_INPUT = "No results were found."
# store the message id of the now playing message
MESSAGE_NOW_PLAYING = None
PREVIOUS_TRACKS = []
LOOPQ = None