我正在尝试使用 Python 和 discord.py 库创建踢命令,但我不知道如何让人们只能踢低于他们角色的成员,因此版主将无法踢管理员。
答案 0 :(得分:0)
您可以将 Member
对象与名为 top_role
的函数进行比较
示例代码如下:
@client.command()
@commands.has_permissions(kick_members=True)
async def kick(ctx, member: discord.Member, *, reason=None):
if member.top_role >= ctx.author.top_role: # Check if the role is below the authors role
await ctx.send("You can only kick users with a lower role!")
return
else:
await member.kick(reason=reason)
await ctx.send(f"{member.id} got kicked with the reason: {reason}.")
答案 1 :(得分:-2)
将所有版主添加到一个列表,将普通用户添加到另一个列表。
像这样;
string[] moderator = all moderators.
string[] regularUsers = all regular users.