我需要列出所有角色以向所有角色添加权限,如何列出所有角色?
for member in server.members:
for role in member.roles:
print(role.id)
我在reddit上看到了这段代码,但是没有打印任何内容,所以我如何列出所有角色?
答案 0 :(得分:1)
这取决于您在哪里进行操作,但是在命令中看起来像这样:
@bot.command()
async def roles(ctx):
print(", ".join([str(r.id) for r in ctx.guild.roles]))
如果您需要获取公会(如果您使用的是事件,并且必需的obj无法使用),则可以使用:
guild = bot.get_guild(ID_HERE)
print(", ".join([str(r.id) for r in guild.roles]))
后期编辑:
@bot.command()
async def rmvroles(ctx):
role_ids = [112233445566778899, 224466881133557799 # etc...
for role in [r for r in ctx.guild.roles if r.id in role_ids]:
try:
await role.delete()
except:
await ctx.send(f"Couldn't delete {role.name} ({role.id}).")
await ctx.send("Deleted roles.")
参考: