如何才能将消息专门发送到用户的专用频道(DM)?

时间:2018-09-25 01:22:35

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

如何将消息专门发送到用户的私人频道?

2 个答案:

答案 0 :(得分:1)

使用此:

await ctx.author.send(message_here)

它将在此处发送变量message_的内容。

它与其他.send()的工作方式相同,因为它仍然返回一条消息,您可以发送嵌入内容并添加一个delete_after。

答案 1 :(得分:0)

async def help(ctx):
    author = ctx.message.author
    await client.send_message(author, 'your text here')

当用户键入命令help时,它将发送

  

您在此处输入文字

给消息的作者。