在discord.py上向特定人员添加角色

时间:2020-04-05 12:56:58

标签: python bots discord discord.py

我一直在用python做一个主持人机器人。 当该人的消息中有一个列入黑名单的词时,该机器人应该给该人一个无语的角色。

badwords = ["лузер", "расизм", "нацизм"] # words examples
for word in badwords:
        if word in message.content.lower():
            if str(message.author) != "ResadeskerBOT#7104":
                mutedRole = # I do not know what to put here
                await member.add_roles(mutedRole)

1 个答案:

答案 0 :(得分:0)

mutedRole = discord.utils.get(ctx.guild.roles, name='Muted')

另请参阅:link