Discord.py - 如何使用此人的 ID 向某人发送私人消息?

2022-01-15 00:00:00 python discord.py

问题描述

我想知道如何向具有他们 ID 的人发送私人消息

I would like to know how do I send private messages to someone with they'r ID

帮助


解决方案

@client.command(pass_context=True)
async def dm(ctx):
    user=await client.get_user_info("User's ID here")
    await client.send_message(user, "Your message goes here")
    # This works ^

相关文章