如何从用户中删除角色? [英] How do you remove a role from a user?

查看:67
本文介绍了如何从用户中删除角色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过命令从用户中删除角色,但是我不确定命令的工作方式。

I'm trying to remove a role from a user with a command but I'm not quite sure how the command works.

这是代码:

@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))


推荐答案

尝试一下:

import discord
from discord.ext import commands

@bot.command()
@commands.has_role('staff')
async def mute(ctx, user: discord.Member):
    role = discord.utils.get(ctx.guild, name='member')
    await user.remove_roles(role)
    await ctx.send(f'{user.name} has been muted from chat')

这篇关于如何从用户中删除角色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆