More comments, added missing help info

This commit is contained in:
= 2025-04-07 16:02:45 +07:00
parent 88ac9f2c61
commit 038f15955c
2 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,7 @@ class Fun(commands.Cog):
def __init__(self, bot): def __init__(self, bot):
self.client = bot self.client = bot
@commands.command() @commands.command(description="Boop the user of your desire", usage={"@user"})
async def boop(self, ctx: nextcord.Message, user: nextcord.User): 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")]) await ctx.reply(f"{user.mention} shall get booped!", files=[nextcord.File("./images/boop.webp")])

View File

@ -2,14 +2,15 @@ import nextcord
from nextcord.ext import commands from nextcord.ext import commands
import os import os
#Defining the basic stuff here
SquogServer = 1356433463854497944 SquogServer = 1356433463854497944
SquogToken = "MTM1NjU2MTY2MjQyOTM2ODQxMQ.G8aypc.CZBX-x6e4Oad3U5zO0nUgc02d9FDIDSNFybysI" SquogToken = "MTM1NjU2MTY2MjQyOTM2ODQxMQ.G8aypc.CZBX-x6e4Oad3U5zO0nUgc02d9FDIDSNFybysI"
client = commands.Bot(command_prefix="!", intents=nextcord.Intents.all()) client = commands.Bot(command_prefix="!", intents=nextcord.Intents.all())
#Removing the default help command because no
client.remove_command("help") client.remove_command("help")
SquogMod = None #Loading Cogs
for filename in os.listdir('./commands'): for filename in os.listdir('./commands'):
if filename.endswith('.py'): if filename.endswith('.py'):
client.load_extension(f'commands.{filename[:-3]}') client.load_extension(f'commands.{filename[:-3]}')