我需要一个discord机器人,它会向服务器中的每一个新成员发送欢迎信息



我正在寻找一个Discord机器人,它可以在Discord服务器中挑选新的加入者,并向他们的收件箱发送欢迎信息。谢谢

https://discordpy.readthedocs.io/en/stable/api.html?highlight=join#discord.on_member_join

@client.event
async def on_member_join(member):
member.author.send("Welcome")

最新更新