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

Ban a user if they leave the server when they have a specific role discord.py(如果用户在具有特定角色时离开服务器,则禁止用户 discord.py)
本文介绍了如果用户在具有特定角色时离开服务器,则禁止用户 discord.py的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我想这样做,如果用户在具有 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)

这篇关于如果用户在具有特定角色时离开服务器,则禁止用户 discord.py的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)