diff options
| author | Joshua Liu <joshua.liu@sourceobby.com> | 2025-11-09 15:38:29 -0500 |
|---|---|---|
| committer | Joshua Liu <joshua.liu@sourceobby.com> | 2025-11-09 15:38:29 -0500 |
| commit | fecffeb0013a26867ed445d476b076667a3090f2 (patch) | |
| tree | 5d30a258b35f8addc04e54541b7be8a943fd73e6 /commands | |
| parent | 2a343208d8e2aaecd010b2ddfbf7c78094e28efa (diff) | |
feat: rewrote main.py to just call bigresult.py
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/funny.py | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/commands/funny.py b/commands/funny.py new file mode 100644 index 0000000..4766e33 --- /dev/null +++ b/commands/funny.py @@ -0,0 +1,40 @@ +from discord.ext import commands +import discord +import random +from main import client + + +class BigCommands: + @client.command(name="snipe") + async def snipe(self, ctx): + await ctx.reply("watch yourself") + pass + + @client.command(name="bigresult") + async def teach(self, ctx): + await ctx.reply( + "https://cdn.discordapp.com/attachments/427176475406630914/1302392181448900649/image.png?ex=6727f2bd&is=6726a13d&hm=6092f4fba06412feac26a16a6900bf6e6122d66506f60bfcc0bc7101ecede4db&") + + @client.command(name="mod") + async def mod(self, ctx): + await ctx.reply( + ">>> *pees in ur ass*\nI am a bot and this action was performed automatically. Please contact the modertators of this server if you have any questions or concerns.") + + @client.command(name="1984") + async def orwell(self, ctx): + if (random.randint(1, 5) == 2): + await ctx.reply(f">>> {ctx.author} has been warned: \n\nBad word usage") + else: + await ctx.reply( + "https://media.discordapp.net/attachments/865417026519957526/866575047459209236/video0-1-1.mov?ex=672d0e27&is=672bbca7&hm=3c80837685cb800ad817855b6463e4e1875dc009c6fc4540eff749c7387c4241&") + + @client.command(name="teachmethebigresult") + async def teachbigresult(self, ctx): + await ctx.reply("take b36 with Nick Cheng. join the 'Big Result' club") + + @client.command(name="ivotedfor") + async def voot(self, ctx): + if (random.randint(1, 2) == 2): + await ctx.reply("Donald trump sweeep") + else: + await ctx.reply("Kamala harris sweeep")
\ No newline at end of file |
