Trying to hide bot token

testing
sgoudham 5 years ago
parent 8f3f17fb5f
commit 2c8bcbe6a7

1
.idea/.gitignore vendored

@ -1,3 +1,4 @@
# Default ignored files
/shelf/
/workspace.xml
/BotToken.txt

@ -0,0 +1 @@
NzE2NzAxNjk5MTQ1NzI4MDk0.Xte5vg.QhcHZLPi-6cmNsGFvp-RsLPdw8k

@ -4,6 +4,7 @@ from discord.ext import commands
# Bot Prefix
client = commands.Bot(command_prefix='~')
token = open("token.txt", "r").readline()
# Instantiates a list for all the cogs
extensions = ['cogs.WaifuImages', 'cogs.FunCommands']
@ -69,6 +70,7 @@ async def on_command_error(ctx, error):
# Delete the message
await message.delete()
@client.event
async def on_command_error(ctx, error):
if isinstance(error, commands.CommandOnCooldown):
@ -80,7 +82,7 @@ async def on_command_error(ctx, error):
await message.delete()
client.run('NzE2NzAxNjk5MTQ1NzI4MDk0.XtWFiw.KZrh9Tkp9vTY9JYSgZfpg2P4mlQ')
client.run(token)
'''
@client.command()

@ -77,7 +77,7 @@ class Fun(commands.Cog):
with open('kakashiImages.txt') as file:
_8ball_array = file.readlines()
if str(ctx.channel) not in channels:
message = await ctx.send(error_function())

Loading…
Cancel
Save