From 7d297f73e9ee6683fe8b05625761cb2f16508611 Mon Sep 17 00:00:00 2001 From: "Mihai Stavila (stavilam)" Date: Wed, 28 Nov 2018 00:34:35 +0000 Subject: [PATCH] Update botClient.py --- botClient.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/botClient.py b/botClient.py index fe9ca15..40be61e 100644 --- a/botClient.py +++ b/botClient.py @@ -2,17 +2,21 @@ from discord.ext import commands """Module which contains all the authentication keys and tokens for the Bot connection, API and Database access etc.""" +"""Add your discord bot application token here""" botToken = "" #discord bot token client = commands.Bot(command_prefix=commands.when_mentioned_or('>'), description='CyberLife Prototype') + +"""Add your discord user id here""" adminId = '' colorCode = [0x17e6f0, 0xe88f2a, 0xee0d0d, 0xff00ff] # aqua blue, warning orange, danger red, eden club pink -weatherKey = '11da6f3bdcc71b85b5ff0b0b2e438d0b' #https://openweathermap.org -timeKey = '7BAYU4WNSSTW' #https://timezonedb.com -dictionaryId = '135ce08c' #https://developer.oxforddictionaries.com -dictionaryKey = 'b09cfb94a4d60e043ec3e4daa754f796' +"""Add your own API Keys Here""" +weatherKey = '' #https://openweathermap.org +timeKey = '' #https://timezonedb.com +dictionaryId = '' #https://developer.oxforddictionaries.com +dictionaryKey = '' dbuser="" #MySQL database user name dbpasswd="" #MySQL database user password