-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.py
More file actions
17 lines (12 loc) · 771 Bytes
/
config.py
File metadata and controls
17 lines (12 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import discord
# Here you can set your token and change defaultvalues of status, activity type and activity name.
# Caution: Do not share your token with anyone, as it can be used to control your account.
TOKEN = "YOUR_TOKEN" # Replace with your Discord token
STATUS = discord.Status.online # This can be "online", "idle", "dnd", or "invisible"
ACTIVITY_TYPE = discord.ActivityType.streaming # This can be "playing", or "streaming"... these are currently supported via self bot
ACTIVITY = {
"name": "Leageue of Legends", # Replace with your activity name
"url": "https://twitch.tv/yourchannel" # Replace with your stream URL, this is only applicable in "streaming" mode"
}
# Set to True if running on Replit to enable the keepalive server
REPLIT = False