Discord Python Bot- 修复清除命令

Posted

技术标签:

【中文标题】Discord Python Bot- 修复清除命令【英文标题】:Discord Python Bot- fixing clear command 【发布时间】:2021-07-25 21:49:05 【问题描述】:

我的 Bot 有一个命令可以清除一些单词或所有内容...

这是我的代码:

@bot.command(aliases=['c'])
@commands.has_permissions(manage_messages=True)
async def clear(ctx, amount: int = None):
    if amount == 0:
        await ctx.channel.purge(limit=10000000000000000000000)
        await ctx.send("Cleared the entire chat!")
        print("Cleared the chat!")
    else:
        await ctx.channel.purge(limit=amount)
        await ctx.send("Done!")
        print(f"Cleared amount messages!")

但如果我只是写 >clear 它会清除所有内容...我怎么能说它什么都不会清除或在 >clear 处说“输入金额”? 感谢您的帮助

【问题讨论】:

【参考方案1】:

好的,修复它...

@bot.command(aliases=['c'])
@commands.has_permissions(manage_messages=True)
async def clear(ctx, amount: int = None):
    if amount == 0:
        await ctx.channel.purge(limit=10000000000000000000000)
        await ctx.send("Cleared the entire chat!")
        print("Cleared the chat!")
    else:
        if amount >= 1:
            await ctx.channel.purge(limit=amount)
            await ctx.send("Done!")
            print(f"Cleared amount messages!")

        else:
            return

【讨论】:

以上是关于Discord Python Bot- 修复清除命令的主要内容,如果未能解决你的问题,请参考以下文章

Discord bot 清除命令错误 [INVALID_TYPE]:提供的选项不是对象

Java Discord Bot (JDA) 检查是不是固定

如何使用 discord.js 从 discord bot 向特定用户发送消息

Discord bot 随机发送广告链接

Python Discord Bot 未加入语音频道

需要帮助将 Bot 更新到 Discord.js v12