From 4bc4bb1508da4d07b5f0cf434c4bab0c028ed3b6 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 4 Nov 2024 09:37:50 -0500 Subject: feat: added a bunch of message reactions --- bigresult.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'bigresult.py') diff --git a/bigresult.py b/bigresult.py index bac8d64..e97acd2 100644 --- a/bigresult.py +++ b/bigresult.py @@ -1,5 +1,7 @@ import discord from discord.ext import commands +import random +# from messages import Messages class BotClient(commands.Bot): @@ -14,11 +16,31 @@ class BotClient(commands.Bot): await self.process_commands(message) if message.author == self.user: return + if (random.randint(1, 2000) == 1984): + await message.reply("thats crazy") + return if ("1984" in message.content): await message.reply("kys") + return if ("roblox" in message.content): await message.add_reaction(roblox) await message.reply("life is roblox\nhttps://cdn.discordapp.com/attachments/890681829915508806/1066566357694562374/DJ_Khaled.mp4?ex=6728ee13&is=67279c93&hm=7a2c5e3c85d42ee07c420424fc26970f502e941f9d1c45324b42270184a17b65&") + return + if ("matrix" in message.content): + await message.reply("be a good kitten") + return + if ("gift card" in message.content): + await message.reply("DO NOT REDEEM! DO NOT REDEEM THE CARD!") + return + if ("andrew tate" in message.content.lower()): + await message.reply("andro tate") + return + if ("gamba" in message.content.lower() or "gamble" in message.content.lower() or "bet" in message.content.lower()): + await message.reply("Google Expected Value") + return + if ("sex" in message.content.lower()): + if self.voice_clients is None: + return async def send_msg(self, msg): channel = self.get_channel(427176475406630914) -- cgit v1.2.3