如何使用Discord bot删除频道中的所有消息

时间:2020-03-11 19:55:20

标签: python bots discord discord.py

我想要做的是,当指定的命令“ m!clear”被发送时,机器人将删除该通道中的所有消息(或特定数量)。我已经有if message.content.startswith('m!clear):了,但是我不知道接下来要做什么。

1 个答案:

答案 0 :(得分:0)

删除所有消息不是很好。我可以与您分享用于删除特定数量邮件的代码

@bot.command()
@commands.has_permissions(manage_messages=True) 
#only those with the permission to manage messages can use this command

async def clear(ctx, amount: int):
    await ctx.channel.purge(limit=amount + 1)
    await ctx.send(f"{amount} message(s) got deleted")

要使用此功能,请使用[command] [value] 即:清除10