-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
42 lines (33 loc) · 3.19 KB
/
Copy pathconfig.py
File metadata and controls
42 lines (33 loc) · 3.19 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
#----Discord ServerStats-Bot Config:----#
#----Made by: WebTheDev @ https://github.com/WebTheDev/ ----#
#Main Config:#
token = "INSERT BOT TOKEN HERE" #Insert the token to your discord bot here
CommandPrefix = "INSERT COMMAND PREFIX HERE" #Insert the character you would like to use for the command prefix here, there is only one command.
activitytype = 'Playing' #Accepted Values are Watching, Listening, Playing, or Streaming.
botstatusmessage = 'INSERT STATUS MESSAGE HERE' #Insert the status message you would like to give the bot.
developerid = 000000000000000000 #Insert the userID here were the bot will send all error dms too. THE USER MUST BE IN THE SAME DISCORD SERVER THAT THE BOT IS IN!
guildID = 000000000000000000 #Insert the guildID of the server that the bot will be running in here.
statscooldownamount = 30 #As the bot checks for guild updates using loops, enter a loopcooldown time here, I reccomend 30 seconds as preset, anything under 15 seconds will most likely get you ratelimited by dsicord.
embedcolor = 0x00000
#Server Member Count Config:#
ServerMembersCheckEnabled = True #True for enabled, False for disabled
IDofChannelForServerMembers = 000000000000000000 #ID of Voice channel to update with server member count
NameofStatsChannel1 = str("All Members: ") #Adjusts the name of the Voice channel, LEAVE THE SPACE!
#Role 1 Count Config:#
Role1CountCheckEnabled = True #True for enabled, False for disabled
IDofRole1 = 000000000000000000 #ID of the server role to keep track of
IDofChannelForRole1Check = 000000000000000000 #ID of Voice channel to update with the Role1 count with the role specified above
NameofRole1Channel = str("Role 1: ") #Adjusts the name of the Voice channel, LEAVE THE SPACE!
#Role 2 Count Config:#
Role2CountCheckEnabled = True #True for enabled, False for disabled
IDofRole2 = 000000000000000000 #ID of the server role to keep track of
IDofChannelForRole2Check = 000000000000000000 #ID of Voice channel to update with the Role2 count with the role specified above
NameofRole2Channel = str("Role 2: ") #Adjusts the name of the Voice channel, LEAVE THE SPACE!
#Bot Count Config:#
BotCountCheckEnabled = True #True for enabled, False for disabled
IDofChannelForBotCheck = 000000000000000000 #ID of Voice channel to update with the bot count
NameofBotChannel = str("Bots: ") #Adjusts the name of the Voice channel, LEAVE THE SPACE!
#Bans Count Config:#
BansCountCheckEnabled = True #True for enabled, False for disabled
IDofChannelForBansCheck = 000000000000000000 #ID of Voice channel to update with the server ban count
NameofBansChannel = str("Bans: ") #Adjusts the name of the Voice channel, LEAVE THE SPACE!