如何获取所有 on_command_error 错误事件的列表

我试图为每种错误类型创建专门的错误,但我只能找到下面使用的 2 个错误。有谁知道命令中的所有错误事件类型


@client.event

async def on_command_error(ctx, error):

    if isinstance(error, commands.CommandOnCooldown):

        await ctx.message.delete()

        embed = discord.Embed(title="Slow Down!! :timer:", description='This command can be used again in %.2f seconds' % error.retry_after, color=0xE74C3C)

        message = await ctx.message.channel.send(embed=embed, delete_after=10)

        await asyncio.sleep(5)

        await message.delete()

    elif isinstance(error, commands.CommandNotFound):

        await ctx.message.delete()

        embed = discord.Embed(title="Uh oh!", description=f"Uh oh, {ctx.author.mention} what are you trying to do?? {error}!", color=0xE74C3C)

        message = await ctx.message.channel.send(embed=embed, delete_after=10)

        await asyncio.sleep(2)

commandNotFound 和 CommandOnCooldown 是我能找到并工作的唯一类型,有人知道所有类型的列表吗?我目前使用 on_command_error 但它不会具体向用户解决问题是什么。谢谢,非常感谢


动漫人物
浏览 95回答 1
1回答

慕村225694

通过一些研究,您可以轻松地从 API 参考中找到所有错误。这是所有命令错误异常。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python