From 8c6a221915d4a309928b8a88b280803060983a27 Mon Sep 17 00:00:00 2001 From: Jonas Leder Date: Wed, 22 Apr 2020 18:57:11 +0200 Subject: [PATCH] updated template config --- config_example.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/config_example.py b/config_example.py index d5a5175..6085445 100644 --- a/config_example.py +++ b/config_example.py @@ -2,11 +2,16 @@ TOKEN = "" #Please add here your token from the discord developper page botAccount = True #if you use a normal useraccount, set this to false prefix = "?" #This you have to enter before every command (e.g. ?help) -messageXP = 2 #The XP you get for every message -reactionXP = 1 #The XP you get for every reaction -minutesPerVcXP = 3 #The number of minutes you have to be online on the voicechat to get 1XP -game="Discord" # the game that the Bot user will play + +#status settings +activity = 0 #0 = playing, 1 = streaming, 2 = listening, 3 = watching +name="Discord" # The name of the game, stream, song, ... +#only used for streaming status: +url = "" #Twitch or YouTube url of the stream #leveling settings base = 10 -factor = 1.1 \ No newline at end of file +factor = 1.1 +messageXP = 2 #The XP you get for every message +reactionXP = 1 #The XP you get for every reaction +minutesPerVcXP = 3 #The number of minutes you have to be online on the voicechat to get 1XP \ No newline at end of file