summaryrefslogtreecommitdiff
path: root/main.py
blob: ab0b3a56f84b8790c6c11d6fd02a81fe838f7dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os

import discord
from dotenv import load_dotenv
from bigresult import BotClient
import random
from discord.ext import commands

load_dotenv()
TOKEN = os.getenv('DISCORD_TOKEN')

intents = discord.Intents.all()

client = BotClient(intents=intents, command_prefix="!") # This represents our connection with Discord


@client.command(name="bigresult")
async def teach(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(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(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(ctx):
    await ctx.reply("take b36 with Nick Cheng. join the 'Big Result' club")

@client.command(name="ivotedfor")
async def voot(ctx):
    if (random.randint(1, 2) == 2):
        await ctx.reply("Donald trump sweeep")
    else:
        await ctx.reply("Kamala harris sweeep")


client.run(TOKEN)  # This actually starts our bot