0% found this document useful (0 votes)
10 views

Bot

Uploaded by

keithmayerliu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

Bot

Uploaded by

keithmayerliu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

from discord.

ext import commands


import random

import os

my_secret = os.environ['token']

bot = commands.Bot(command_prefix="pee ")


print('hi doods')
@bot.command()
async def chess(ctx):
await ctx.send("<@!551544151204692000>")
# hey
# how are you
# please don't run this repl
@bot.command()
async def prefix(ctx):
await ctx.send("is pee")

@bot.command()
async def smw(ctx):
await ctx.send("smw")

@bot.command()
async def insult(ctx):
await ctx.send("u smell like poop")

@bot.command(pass_context=True)
async def coinflip(ctx):
variable = [
"head",
"tail"]
await ctx.send(random.choice(variable))

@bot.command(pass_context=True)
async def IdiotTest(ctx):
variable = [
"yes ur an idiot",
"no ur smart"]
await ctx.send(random.choice(variable))

@bot.command(pass_context=True)
async def joke(ctx):
variable = [
"what did the left eye say to the right eye? i smell something going on",
"whats fast loud and crunchy? a rocket chip","what did the pirate say when
he had his 80th birthday? AYYY MATEYYYYYYY", "congrats! you found the
secret!","Whats the best thing about Switzerland? I don't know but the flag is a
big plus. ","I invented a new word! Plagiarism.","Did you hear about the
mathematician who’s afraid of negative numbers? He’ll stop at nothing to avoid
them.","Why do we tell actors to “break a leg?Because every play has a
cast.","Helvetica and Times New Roman walk into a bar Get out of here! shouts the
bartender","Yesterday I saw a guy spill all his Scrabble letters on the road. I
asked him, What’s the word on the street?"]
await ctx.send(random.choice(variable))

@bot.command()
async def sorry(ctx):
await ctx.send("sorry")

@bot.command()
async def thicc(ctx):
await ctx.send("thicc")

@bot.command()
async def calculate(ctx):
await ctx.send("i am not a calculator, idot")

@bot.command()
async def pee(ctx):
await ctx.send(":yellow_circle:")

@bot.command()
async def poo(ctx):
await ctx.send(":poop:")

@bot.command()
async def oo(ctx):
await ctx.send("oo")

bot.run("TOKEN")

You might also like