discordBot/scr/bot.py

34 lines
788 B
Python
Raw Normal View History

2019-04-08 21:30:51 -05:00
from discord.ext.commands import Bot
token = open("../token.txt")
cogs = ["Modules.TGH.automod.automod", "Modules.TGH.automod.ouat",
"Modules.SSC.autoReply.Join", "Modules.SSC.autoReply.Leave",
2020-02-23 22:26:50 -06:00
"Modules.SSC.ChangeServer.Change"]
2019-04-08 21:30:51 -05:00
prefix = 'o!'
"""
tokens = open("tokens.txt", 'r')
tokens = tokens.readlines()
bot_running = input("Would you like to run the test bot[T] or the default[D] :: ")
if bot_running == 'T':
token = tokens[0].rstrip()
elif bot_running == 'D':
token = tokens[1].rstrip()
tokens = ''
"""
2019-04-08 21:30:51 -05:00
client = Bot(command_prefix=prefix)
client.remove_command("help")
2019-04-08 21:30:51 -05:00
@client.event
async def on_ready():
print('Logged in as:')
print('{0.user}'.format(client))
2019-04-08 21:30:51 -05:00
for cog in cogs:
client.load_extension(cog)
2020-02-23 22:26:50 -06:00
client.run(token.read())