diff options
author | Josh <eeei3.joshua0307lol@gmail.com> | 2024-11-04 09:37:50 -0500 |
---|---|---|
committer | Josh <eeei3.joshua0307lol@gmail.com> | 2024-11-04 09:37:50 -0500 |
commit | 4bc4bb1508da4d07b5f0cf434c4bab0c028ed3b6 (patch) | |
tree | b40208b164aa33d5325168b256e82231b2fbe5ab /bigresult.py | |
parent | dc2781781857c90834f27373ba3362719875ae84 (diff) |
feat: added a bunch of message reactions
Diffstat (limited to 'bigresult.py')
-rw-r--r-- | bigresult.py | 22 |
1 files changed, 22 insertions, 0 deletions
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) |