Python Discord Bot Prune 命令

Posted

技术标签:

【中文标题】Python Discord Bot Prune 命令【英文标题】:Python Discord Bot Prune Command 【发布时间】:2018-10-21 06:55:18 【问题描述】:

我正在为 Discord 创建一个用 python 编写的机器人。我希望它能够删除特定用户的消息,而不仅仅是文本频道中的每条消息。我在这里看到了另一篇文章,有点帮助,但我无法弄清楚如何做“特定用户”部分。这是我所拥有的:

@client.command(pass_context = True)
async def purge(ctx, number):
    number = int(number) #Converting the amount of messages to delete to an integer
    counter = 0
    async for x in client.logs_from(ctx.message.channel, limit = number):
        if counter < number:
            await client.delete_message(x)
            counter += 1

【问题讨论】:

【参考方案1】:

根据docs,消息对象包含有关其作者的信息。您需要做的就是检查返回的作者是否是您要从中删除消息的作者。您必须检查频道中的每条消息。

【讨论】:

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

Python 3.6 Discord bot Bot 事件冲突

Discord Python Bot- 修复清除命令

Discord bot python:discord.errors.ClientException:找不到ffmpeg

Python Discord Bot 取消命令

Discord Python Bot - Bot 的消息不会自动嵌入链接/图像/等

Discord Bot Python 让它创建嵌入