代码之家  ›  专栏  ›  技术社区  ›  user9259249

如何将成员的图像和nick放入嵌入?(带不协调py)

  •  1
  • user9259249  · 技术社区  · 6 年前

    我想把运行命令的人的头像和尼克放在嵌入中,类似这样:

    requested by:
    (avatar) (nick) 
    

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

    3 回复  |  直到 6 年前
        1
  •  4
  •   Patrick Haugh    6 年前

    听起来您应该阅读更多文档,以下是一些链接:

    重写: embed , send

    异步: embed , send_message

    否则,下面是我建议使用的代码

    em = discord.Embed(description='requested by:\n{0}'.format(ctx.author))
    em.set_thumbnail(url=ctx.author.avatar_url)
    
    # for rewrite (1.0.0a) do
    await ctx.send(embed=em)
    
    # if you're using async 0.16.x do
    await bot.say(embed=em)
    
        2
  •  1
  •   user9259249 user9259249    6 年前

    我用了这个:

    embed.set_thumbnail(url=message.author.avatar_url)
    embed.set_footer(text='ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤRequested by: ' + message.author.name)
    
        3
  •  0
  •   Raymond Zhang    6 年前

    在线有一个非常方便的工具,您可以使用它创建嵌入 discord.py .

    这里有一个链接: Discord Embed Generator .

    然而,我强烈建议您也阅读这些文档,以便更好地了解您正在编写的代码,而不是依赖于这些资源。

    这里是嵌入 documentation .