Ejemplo: discord.py comprueba si el usuario tiene un rol
@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)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)