【问题标题】:Discord.py rewrite How to DM commands?Discord.py rewrite 如何 DM 命令?
【发布时间】:2019-04-28 22:35:25
【问题描述】:

我试图让我的机器人在执行“-help”时向用户发送帮助。

我已经尝试在我的代码中执行此操作,但它不起作用。

async def help(ctx):
  helpembed = discord.Embed(color=discord.Color.purple())
  helpembed.set_author(name="Help")
  helpembed.add_field(name="-new", value="Creates a new ticket. [Logged]",inline=False)
  helpembed.add_field(name="-close", value="Closes the ticket.People with the role 'Viewing Team' can close ticets. [Logged]",inline=False)
  helpembed.add_field(name="-setup", value='Sets Up your server so it can be used',inline=False)
  helpembed.add_field(name="-help", value="Shows this message :rofl:",inline=False)
  await client.send_message(ctx.message.author, embed=helpembed)
await ctx.send("Help sent in DM's.")```

The bot should DM the user with help. Instead it does nothing.

【问题讨论】:

    标签: python python-3.x discord.py discord.py-rewrite


    【解决方案1】:

    要向 中的用户发送私人消息,请使用User.send 方法:

    async def help(ctx):
        ...
        await ctx.author.send(...)
    

    这是因为User 是抽象Messageable 类的子类

    【讨论】:

      猜你喜欢
      • 2021-05-17
      • 2020-10-10
      • 2019-08-22
      • 2021-03-19
      • 1970-01-01
      • 2021-07-20
      • 2021-05-20
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多