diff --git a/clear_commands.py b/clear_commands.py new file mode 100644 index 0000000..4b0d2d2 --- /dev/null +++ b/clear_commands.py @@ -0,0 +1,22 @@ +import discord +import os +from os import system +from os import environ +from discord.ext import commands + +intents = discord.Intents( + guilds=True, + members=True, + messages=True, +) + +token = os.environ['TOKEN'] +prefix = os.environ['PREFIX'] +bot = commands.Bot(intents=intents, command_prefix=prefix) +client = discord.Client() + +@bot.event +async def on_ready(): + print("Bot ready on Version %s..." % discord.__version__) + +bot.run(token) \ No newline at end of file