当命令discord.py的参数不正确时,如何显示消息?

时间:2020-01-08 21:54:03

标签: python python-3.x bots discord.py discord.py-rewrite

我正在制造一个不和谐的机器人,我想知道如何制作一个事件处理程序,当用户调用一个不存在的命令时,机器人会发送一条消息,说:“这不是有效的命令” 。任何帮助将不胜感激,谢谢!

1 个答案:

答案 0 :(得分:2)

这应该可以解决问题:


@bot.event
async def on_command_error(ctx, error):
    if isinstance(error, commands.CommandNotFound):
        await ctx.send("words i guess")