15 lines
435 B
Python
15 lines
435 B
Python
import os
|
|
import nextcord
|
|
from nextcord.ext import commands
|
|
|
|
class Fun(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.client = bot
|
|
|
|
@commands.command()
|
|
async def boop(self, ctx: nextcord.Message, user: nextcord.User):
|
|
await ctx.reply(f"{user.mention} shall get booped!", files=[nextcord.File("./images/boop.webp")])
|
|
# Add something here later cuz im lazy raaahhh
|
|
|
|
def setup(bot):
|
|
bot.add_cog(Fun(bot)) |