summaryrefslogtreecommitdiff
path: root/bigresult.py
blob: 6a11d1bfc45320bba8ba5c88ba81eb8775f52fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)