微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

您如何删除不和谐机器人的最新消息? - 不和谐.py

如何解决您如何删除不和谐机器人的最新消息? - 不和谐.py

我尝试执行清除命令,这是我的代码

@bot.command(pass_context=True)
@commands.has_permissions(administrator=True)
async def purge(ctx,limit: int):
  await ctx.channel.purge(limit=limit)
  await ctx.message.delete()
  await ctx.send(f'Deleted {limit} messages. Done by {ctx.author.mention}.')
  await asyncio.sleep(2)
  await bot.delete.message.most_recent()

但是当我尝试运行该命令时,它会删除消息,但在尝试删除消息时会出现此错误

Ignoring exception in command purge:
Traceback (most recent call last):
  File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/ext/commands/core.py",line 85,in wrapped
    ret = await coro(*args,**kwargs)
  File "main.py",line 312,in purge
    await ctx.message.delete()
  File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/message.py",line 1023,in delete
    await self._state.http.delete_message(self.channel.id,self.id)
  File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/http.py",line 250,in request
    raise NotFound(r,data)
discord.errors.NotFound: 404 Not Found (error code: 10008): UnkNown Message

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/ext/commands/bot.py",line 939,in invoke
    await ctx.command.invoke(ctx)
  File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/ext/commands/core.py",line 863,in invoke
    await injected(*ctx.args,**ctx.kwargs)
  File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/ext/commands/core.py",line 94,in wrapped
    raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: NotFound: 404 Not Found (error code: 10008): UnkNown Message

有什么帮助吗?

解决方法

你可以试试这个:

@bot.command(pass_context=True)
@commands.has_permissions(administrator=True)
async def purge(ctx,limit: int):
    await ctx.channel.purge(limit=limit)
    await ctx.message.delete()
    await ctx.send(f'Deleted {limit} messages. Done by {ctx.author.mention}.',delete_after = 2)

delete_after 在特定秒数后删除机器人发送的消息。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。