我一直在努力嵌入这条消息,它目前正在从 python 项目的路径中获取图像并发送它们,但我想像这样嵌入它们:
标题是图片: 说明正在享受! 并且彩色侧边栏为红色
当前代码:
@client.command()
async def image(channel):
file = random.choice(files)
await channel.send(file=discord.File(file))
答案 0 :(得分:0)
您需要先阅读有关嵌入的更多信息,然后才能毫不费力地询问要做什么。
@client.command()
async def image(channel):
file = random.choice(files)
embed = discord.Embed(title="", description="Enjoy!", color=discord.Color.red())
embed.set_image(url=file)
await channel.send(embed=embed)