猿问

Discord.py 为用户添加角色

我是 python 的新手,通常会创建不和谐的机器人,我一生都无法弄清楚如何让我的机器人根据用户请求为用户分配角色。


我已经连续几个小时在互联网上搜索并找到了一些示例,但它们都产生并出错。


这是我的命令代码:


@client.command(pass_context=True)

@commands.has_role("Bots")

async def add_bot(ctx):

    member = ctx.message.author

    role = discord.utils.get(member.server.roles, name="Bots")

    await client.add_roles(member, role)

这是我得到的错误:


in _verify_checks raise CheckFailure('The check functions for command {0.qualified_name} failed.'.format(self))

discord.ext.commands.errors.CheckFailure: The check functions for command add_bot failed.



慕森王
浏览 122回答 2
2回答

呼如林

对于重写版本,事情发生了一些变化,add_roles不再client是discord.Member类的一部分,而是类的一部分,因此 discord.py 重写版本的代码是:@client.command(pass_context=True)async def add_role(ctx):    member = ctx.author    role = discord.utils.get(member.guild.roles, name="Bots")    await member.add_roles(role)REWRITE版本的小更新。

开心每一天1111

取下has_role支票。检查调用者是否具有角色以便他们可以为自己分配该角色是没有意义的。@client.command(pass_context=True)async def add_bot(ctx):    member = ctx.message.author    role = discord.utils.get(member.server.roles, name="Bots")    await client.add_roles(member, role)
随时随地看视频慕课网APP

相关分类

Python
我要回答