我如何将成员的图像和昵称放在嵌入中?(w/discord.py)

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

问题描述

我想将运行命令的人的头像和昵称放入嵌入中,如下所示:

I want to put the avatar and nick of the person who ran a command in the embed, something like this:

requested by:
(avatar) (nick) 

但我不知道如何开始......

but I do not know how to start....


解决方案

我用这个:

embed.set_thumbnail(url=message.author.avatar_url)
embed.set_footer(text='ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤRequested by: ' + message.author.name)

相关文章