“Проверьте роль пользователя в on_message discord.py” Ответ

Discord.py Проверьте, играет ли пользователь роль

    @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

Discord py Get пользователя по ID

user = bot.get_user(user_id)
IllegalBeagle123

Проверьте роль пользователя в on_message discord.py

Discord
Beautiful Barracuda

Проверьте роль пользователя в on_message discord.py

503609286367248384
Beautiful Barracuda

Ответы похожие на “Проверьте роль пользователя в on_message discord.py”

Вопросы похожие на “Проверьте роль пользователя в on_message discord.py”

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

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