RodrigoM
0
Q:

discord.py get list of availbale commands

@bot.command(name="help", description="Returns all commands available")
async def help(ctx):
    helptext = "```"
    for command in self.bot.commands:
        helptext+=f"{command}\n"
    helptext+="```"
    await ctx.send(helptext)
0

New to Communities?

Join the community