Discord.py on_member_join 不起作用,没有错误消息
Posted
技术标签:
【中文标题】Discord.py on_member_join 不起作用,没有错误消息【英文标题】:Discord.py on_member_join not working, no error message 【发布时间】:2021-01-16 17:09:03 【问题描述】:我正在尝试使用 Discord.py 库制作一个不和谐机器人。带有 @client.command() 装饰器的命令对我来说工作正常,但我尝试过的事件都没有工作。
@client.event
async def on_member_join(member):
channel = client.get_channel(ChannelId) #I did define channel Id in my code
await channel.send("someone has joined")
@client.event
async def on_member_remove(member):
print("Someone has left")
我希望这会输出到终端或我输入的频道 ID,但什么也没有出现,甚至没有错误消息。
*我用过客户端。对于所有功能。 *我在 mac 上做这个。
我不太确定它为什么起作用,我没有收到任何错误消息,而且我似乎找不到其他人遇到此问题。
提前致谢
【问题讨论】:
【参考方案1】:如果您使用的是 discord.py v1.5.0,请参阅Gateway Intents 的文档
【讨论】:
非常感谢,我不知道。【参考方案2】:对于 >1.5.0 版本,您可以执行以下操作:
import discord
intents = discord.Intents.default()
intents.members = True
client = discord.Client(intents=intents)
@client.event
async def on_member_join(member):
await member.send("Welcome!")
【讨论】:
【参考方案3】:import discord
intents = discord.Intents.all()
discord.member = True
bot = commands.Bot(command_prefix="[",intents = intents)
你需要去开发者门户——>应用程序(选择你的机器人) 并在设置下有一个机器人。在有PRESENCE INTENT和SERVER MEMBERS INTENT的页面下点击它,你需要打开它。这将起作用。
【讨论】:
以上是关于Discord.py on_member_join 不起作用,没有错误消息的主要内容,如果未能解决你的问题,请参考以下文章
Discord.py 欢迎机器人 on_member_join 事件未被调用
Discord.py on_member_join 不起作用,没有错误消息