如果用户在具有特定角色时离开服务器,则禁止用户 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

How do I make a list of all members in a discord server using discord.py?(如何使用 discord.py 列出不和谐服务器中的所有成员?)
how to change discord.py bot activity(如何更改 discord.py 机器人活动)
Issues with getting VoiceChannel.members and Guild.members to return a full list(让 VoiceChannel.members 和 Guild.members 返回完整列表的问题)
Add button components to a message (discord.py)(将按钮组件添加到消息(discord.py))
on_message() and @bot.command issue(on_message() 和@bot.command 问题)
How to edit a message in discord.py(如何在 discord.py 中编辑消息)