summaryrefslogtreecommitdiff
path: root/bigresult.py
diff options
context:
space:
mode:
Diffstat (limited to 'bigresult.py')
-rw-r--r--bigresult.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/bigresult.py b/bigresult.py
new file mode 100644
index 0000000..6a11d1b
--- /dev/null
+++ b/bigresult.py
@@ -0,0 +1,16 @@
+import discord
+from discord.ext import commands
+
+class BotClient(discord.ext.commands.Bot):
+ async def on_ready(self):
+ print("The big result bot is ready!")
+ for guild in self.guilds:
+ break;
+ await self.send_msg("Hurlo")
+
+ async def send_msg(self, msg):
+ channel = self.get_channel(427176475406630914)
+ await channel.send(msg)
+
+
+