gpt4 book ai didi

python - 如何从用户中删除角色?

转载 作者:行者123 更新时间:2023-12-04 16:30:16 24 4
gpt4 key购买 nike

我正在尝试使用命令从用户中删除角色,但我不太确定该命令是如何工作的。

这是代码:

@bot.command(pass_context=True)
@commands.has_role('staff')
async def mute(ctx, user: discord.Member):
await bot.remove_roles(user, 'member')
await bot.say("{} has been muted from chat".format(user.name))

最佳答案

它看起来像 remove_roles 需要一个 Role对象,而不仅仅是角色的名称。我们可以使用 discord.utils.get获得角色

from discord.utils import get

@bot.command(pass_context=True)
@commands.has_role('staff')
async def mute(ctx, user: discord.Member):
role = get(ctx.message.server.roles, name='member')
await bot.remove_roles(user, role)
await bot.say("{} has been muted from chat".format(user.name))

我不知道如果您尝试删除目标成员没有的角色会发生什么,因此您可能需要进行一些检查。如果您尝试从服务器管理员中删除角色,这也可能会失败,因此您可能也想检查一下。

关于python - 如何从用户中删除角色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48906438/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com