discordBot/scr/bot.py

35 lines
824 B
Python
Raw Normal View History

2020-12-19 00:11:01 -06:00
import discord
2019-04-08 21:30:51 -05:00
from discord.ext.commands import Bot
token = open("../token.txt")
2020-12-06 00:27:37 -06:00
cogs = ["Modules.TMC.autoReply.Join", "Modules.TMC.autoReply.Leave",
2021-01-22 16:16:25 -06:00
"Modules.TMC.McRoll", "Modules.TMC.ParseForIssues", "Modules.TMC.doym"]
2019-04-08 21:30:51 -05:00
prefix = 'o!'
2020-12-19 00:11:01 -06:00
intents = discord.Intents().all()
"""
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 = ''
"""
2020-12-19 00:11:01 -06:00
client = Bot(command_prefix=prefix, intents=intents)
2019-04-08 21:30:51 -05:00
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())