Discord.py bot 不私信新成员

Discord.py bot doesn't dm new members

我正在使用事件 on_member_join 尝试向新成员发送消息,但是当我用我的 alt 测试时,它没有发送消息。

@bot.event
async def on_member_join(member):
  embed = discord.Embed(title="Welcome to my server!", description=None, color = discord.Color.magenta())
  embed.add_field(name="To get started:", value="•Invite some friends!\n•Check out some of the channels and get engaged with the community!\n•Have fun!", inline=True)
  channel = bot.get_channel(803703488499810326)
  userDM = member.create_dm()
  await userDM.send(embed=embed)

您不需要执行 member.create_dm() 因为当您向用户发送 DM 时不需要它。 您也不需要将 description 定义为 None,您甚至不需要指定描述。

为了让机器人能够找到成员,您需要在机器人中打开成员意图。您可以使用下图进行操作。

现在,您只需要在机器人中提供代码,机器人就可以使用意图。 这是您需要添加到主机器人文件中的代码。

intents = discord.Intents.default() # Gets the default intents from discord.
intents.members = True # enables members intents on the bot.

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

所有这些之后,这是您的固定代码。

@bot.event
async def on_member_join(member):
  embed = discord.Embed(title="Welcome to my server!", description=None, color = discord.Color.magenta())
  embed.add_field(name="To get started:", value="•Invite some friends!\n•Check out some of the channels and get engaged with the community!\n•Have fun!", inline=True)
  await member.send(embed=embed)

希望对您有所帮助,祝您有愉快的一天,祝您的机器人好运。 这是一个适合初学者的 Discord 服务器。

Discord.py 对于初学者 : https://discord.gg/C8zFM3D2rn