“Добавьте к себе роль в Discord Bot Python” Ответ

Добавьте к себе роль в Discord Bot Python

@async def on_message(message):
     if message.content == "give me admin"
           role = discord.utils.get(server.roles, name="Admin")
           await client.add_roles(message.author.id, role)
Encouraging Emu

Добавьте к себе роль в Discord Bot Python


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 Bot Python”

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

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

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

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