gpt4 book ai didi

python - 查找消息的作者

转载 作者:行者123 更新时间:2023-11-28 22:24:07 24 4
gpt4 key购买 nike

如果有人写“?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))

最佳答案

要获取邮件作者的姓名,您需要使用context

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

关于python - 查找消息的作者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46611016/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com