寻找消息的作者

问题描述 投票:2回答:3

如果有人写“?name(arg)”,我希望我的机器人说出消息的作者+“,你的名字是”+ arg。我找不到该消息的作者。

@client.command()
async def name(their_name):
    await client.say("{0}, your name is {1}.".format("""author of the message goes here""", their_name))
python discord discord.py
3个回答
3
投票

要获取消息作者的姓名,您需要使用context

@client.command(pass_context=True)
async def name(ctx):
    username = ctx.message.author.name
    ...

1
投票

您也可以使用User.display_name,它将尝试使用用户服务器特定的昵称,但如果找不到,则将回退到通用用户名:

@client.command(pass_context=True)
async def name(ctx):
    username = ctx.message.author.display_name

0
投票

要获取消息作者的姓名,您可以使用:

message.author.id
© www.soinside.com 2019 - 2024. All rights reserved.