“commands.has_role discord.py” Respostas de código

discord.py verifique se o usuário tem função

    @bot.command(pass_context=True)
    @commands.has_role("Admin")
    async def unmute(ctx, user: discord.Member):
        role = discord.utils.find(lambda r: r.name == 'Member', ctx.message.server.roles)
        if role in user.roles:
            await bot.say("{} is not muted".format(user))
        else:
            await bot.add_roles(user, role)
Stupid Sandpiper

commands.has_role discord.py

from discord.ext.commands import commands
Dull Dragonfly

Respostas semelhantes a “commands.has_role discord.py”

Perguntas semelhantes a “commands.has_role discord.py”

Procure respostas de código populares por idioma

Procurar outros idiomas de código