我正在使用discord.py
重写创建一个不和谐的bot,并将其托管在repl.it上。我正在尝试添加角色分配,但是每次尝试添加角色都会出现错误
我到处都是堆栈溢出,无法找到添加角色的解决方案。我也浏览了文档,但这使我更加困惑。
import discord.utils
@client.command()
async def role(ctx, * role):
user = ctx.message.author
role = discord.utils.get(user.guild.roles, name=f"{role}")
await ctx.add_roles(user, role)
它应该将指定的角色添加到消息作者中,但只会产生此错误
File "main.py", line 18, in role
await ctx.add_roles(user, role)
AttributeError: 'Context' object has no attribute 'add_roles'
答案 0 :(得分:0)
我添加了Alberto Poljak的建议,并且有效!
import discord.utils
@client.command()
async def role(ctx, * role: discord.Role):
user = ctx.message.author
await user.add_roles(role)