“Добавить роли Discord .py” Ответ

Добавить роли Discord .py

member = message.author
var = discord.utils.get(message.guild.roles, name = "role name")
member.add_role(var)
Tyrannicodin16

Добавить роли Discord .py


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)

Wide-eyed Wildebeest

Ответы похожие на “Добавить роли Discord .py”

Вопросы похожие на “Добавить роли Discord .py”

Больше похожих ответов на “Добавить роли Discord .py” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования