如何从用户中删除角色?

编程入门 行业动态 更新时间:2024-10-25 10:26:10
本文介绍了如何从用户中删除角色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

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

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

这是代码:

@botmand(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 @botmand() @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')

更多推荐

如何从用户中删除角色?

本文发布于:2023-11-25 08:55:01,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1629132.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:角色   用户

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!