我试图为每种错误类型创建专门的错误,但我只能找到下面使用的 2 个错误。有谁知道命令中的所有错误事件类型@client.eventasync 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 但它不会具体向用户解决问题是什么。谢谢,非常感谢
添加回答
举报
0/150
提交
取消