如果用户在具有特定角色时离开服务器,则禁止用户 discord.py

2022-01-15 00:00:00 python discord discord.py

问题描述

我想这样做,如果用户在具有 Muted[Banned] 角色时离开服务器,他们将被永久禁止.

I want make it so if a user leaves the server while they have the Muted or [Banned] role they get permanently banned.

这是我尝试过的代码:

@bot.event
async def on_member_remove(ctx, member, reason=None):
    role="[Banned]"
    guild = ctx.guild
    if role in member.roles:
        await guild.ban(discord.Object(id=member.id), reason="Leaved the server when soft banned")

*这只是一个尝试,只有被禁止的角色.

*this is just a try with only the banned role.

用户没有被禁止,也没有错误或任何可以帮助我解决问题的东西.

The user doesn't get banned, there is also no error or anything that could help me troubleshoot it.


解决方案

member.roles 返回一个列表 角色

您需要获取 Role 对象,您可以使用的一种方法是:

You need to get the Role object which one way you can use is:

role = discord.utils.find(lambda r: r.name == '[Banned]', member.guild.roles)

on_member_remove 接受会员.你不能有 reason 或 Context(ctx)

on_member_remove takes in Member. You cannot have reason or Context(ctx)

@bot.event
async def on_member_remove(member):
    role = discord.utils.find(lambda r: r.name == '[Banned]', member.guild.roles)
    guild = member.guild
    if role in member.roles:
        await guild.ban(discord.Object(id=member.id), reason="Leaved the server when soft banned")

还请确保您启用了成员意图.你可以通过here 然后选择 Bot ->服务器成员意图

Please also ensure you have the Members intent enabled. You can do this by going here then selecting Bot -> SERVER MEMBERS INTENT

您需要在代码中启用意图,方法是:

You will need to do enable intents in your code by using:

intents = discord.Intents.default()
intents.members = True

bot = commands.Bot(command_prefix=".", intents=intents)

相关文章