@bot.command()
async def unban(ctx, id: int):
user = await bot.fetch_user(id)
async for entry in ctx.message.guild.audit_logs(limit=None, user=user, action=discord.AuditLogAction.ban):
await ctx.guild.unban(entry.target)
print("Unbanned ", entry.target, entry.target.id, "Banned by ", entry.user, "Entry ID: ", entry.id)
编写上面的函数是为了获取用户 ID,并将其传递给audit_logs() 以获取该用户禁令的所有审核日志条目。然后我尝试使用入口目标发出 unban() 。当我在我的私人服务器上测试它时,这是有效的。我邀请了一堆机器人,自己禁止了一些机器人,然后用一个机器人禁止了其他机器人。我使用自己的用户 ID 运行该命令,BattleNubBot 仅取消了我已禁止的用户。
我认为我修改的服务器的管理员可以邀请我的机器人查看审核日志并禁止权限,然后我们在那里尝试了该命令。我们得到:
忽略命令 unban 中的异常:
Traceback (most recent call last):
File "C:\Users\Joey\AppData\Local\Programs\Python\Python36\lib\site-packages\discord\ext\commands\core.py", line 85, in wrapped
ret = await coro(*args, **kwargs)
File ".\BattleNubBot.py", line 21, in unban
await ctx.guild.unban(entry.target)
File "C:\Users\Joey\AppData\Local\Programs\Python\Python36\lib\site-packages\discord\guild.py", line 1892, in unban
await self._state.http.unban(user.id, self.id, reason=reason)
File "C:\Users\Joey\AppData\Local\Programs\Python\Python36\lib\site-packages\discord\http.py", line 243, in request
raise NotFound(r, data)
discord.errors.NotFound: 404 Not Found (error code: 10026): Unknown Ban
杨__羊羊
相关分类