Bot
Bot
import os
my_secret = os.environ['token']
@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")