不和谐.py | 为某人添加角色

Bas*_*err 5 python discord.py

我在 discord.py 中创建“添加角色”命令时遇到问题。我不知道出了什么问题;它只是不起作用。

@client.command()
@commands.has_role("Admin")
async def addrole(ctx):
    user = ctx.message.author
    role = discord.utils.get(user.server.roles, name="Test")
    await client.add_roles(user, role)
Run Code Online (Sandbox Code Playgroud)

Pat*_*ugh 10

from discord.ext import commands
from discord.utils import get

bot = commands.Bot(command_prefix='!')

@bot.command(pass_context=True)
@commands.has_role("Admin") # This must be exactly the name of the appropriate role
async def addrole(ctx):
    member = ctx.message.author
    role = get(member.server.roles, name="Test")
    await bot.add_roles(member, role)
Run Code Online (Sandbox Code Playgroud)

我想在你的代码的唯一真正的错误是缺乏pass_context=True@bot.command装饰。您可能已经看过一些没有这个的代码,但这可能属于的实验性“重写”分支


Tre*_*rds 7

roleVer = 'BOT' #role to add
user = ctx.message.author #user
role = roleVer # change the name from roleVer to role

await ctx.send("""Attempting to Verify {}""".format(user))
try:
    await user.add_roles(discord.utils.get(user.guild.roles, name=role)) #add the role
except Exception as e:
    await ctx.send('There was an error running this command ' + str(e)) #if error
else:
    await ctx.send("""Verified: {}""".format(user)) # no errors, say verified
Run Code Online (Sandbox Code Playgroud)


小智 7

@bot.command(pass_context=True)
async def giverole(ctx, user: discord.Member, role: discord.Role):
    await user.add_roles(role)
    await ctx.send(f"hey {ctx.author.name}, {user.name} has been giving a role called: {role.name}")
Run Code Online (Sandbox Code Playgroud)