Browse Source

spank command added. Just a suck clone

tags/v1.0.0
roxie 6 years ago
parent
commit
2c66f80f71
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      cogs/fun.py

+ 12
- 0
cogs/fun.py View File

roll = random.randrange(step, dice + 1, step) roll = random.randrange(step, dice + 1, step)
return await self.bot.say("{} rolled a **{}**".format(ctx.message.author.mention, roll)) return await self.bot.say("{} rolled a **{}**".format(ctx.message.author.mention, roll))


@bot.command(pass_context=True)
async def spank(self, ctx, *, user: discord.User = None):
"""
Spanks the mentioned user ;)
Usage:
{command_prefix}spank @RoxBot#4170
{command_prefix}spank RoxBot
"""
if not user:
return await self.bot.say("You didn't mention someone for me to spank")
return await self.bot.say(":peach: :wave: *{} spanks {}*".format(self.bot.user.name, user.name))

@bot.command(pass_context=True) @bot.command(pass_context=True)
async def suck(self, ctx, *, user: discord.User = None): async def suck(self, ctx, *, user: discord.User = None):
""" """

Loading…
Cancel
Save