如何检查用户是否在不和谐中扮演特定角色 [英] how do I check if a user has a specific role in discord

查看:51
本文介绍了如何检查用户是否在不和谐中扮演特定角色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这应该检查特定人员是否具有静音角色

This should check if the specific person does or doesn't have the mute role

    @bot.command(pass_context=True)
    @commands.has_role("Admin")
    async def unmute(ctx, user: discord.Member):
        role = discord.utils.find(lambda r: r.name == 'Member', 
    ctx.message.server.roles)
        if user.has_role(role):
            await bot.say("{} is not muted".format(user))
        else:
            await bot.add_roles(user, role)

抛出此错误

命令引发异常:AttributeError:成员"对象没有属性"has_role"

Command raised an exception: AttributeError: 'Member' object has no attribute 'has_role'

我不知道该怎么做,因此,我将非常感谢我所能提供的一切帮助

I don't know how to do it so i would really appreciate every help I can get

推荐答案

成员没有 .has_role()方法,但是您可以使用获取其所有角色的列表.角色.

Member does not have a .has_role() method, you can however get a list of all their roles using .roles.

要查看用户是否具有给定角色,我们可以在user.roles 中使用 role.

To see if a user has a given role we can use role in user.roles.

    @bot.command(pass_context=True)
    @commands.has_role("Admin")
    async def unmute(ctx, user: discord.Member):
        role = discord.utils.find(lambda r: r.name == 'Member', ctx.message.guild.roles)
        if role in user.roles:
            await bot.say("{} is not muted".format(user))
        else:
            await bot.add_roles(user, role)

参考文档: https://discordpy.readthedocs.io/en/latest/api.html#member

注意: ctx.message.guild.roles 以前是 ctx.message.server.roles .由于API更改而更新.

Note: ctx.message.guild.roles use to be ctx.message.server.roles. Updated due to API change.

这篇关于如何检查用户是否在不和谐中扮演特定角色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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