如何将消息嵌入到带有 discord.py 中消息 ID 的变量中?我通过 uzenet = await client.get_message(channel, id) 收到消息,但我不知道如何嵌入.
How can I get the embed of a message to a variable with the ID of the message in discord.py?
I get the message with uzenet = await client.get_message(channel, id), but I don't know how to get it's embed.
要获得您的消息的第一个嵌入,正如您所说,这将是一个 dict():embedFromMessage = uzenet.embeds[0]
To get the first Embed of your message, as you said that would be a dict():
embedFromMessage = uzenet.embeds[0]
要将 dict() 转换为 discord.Embed 对象:embed = discord.Embed.from_data(embedFromMessage)
To transfer the dict() into an discord.Embed object:
embed = discord.Embed.from_data(embedFromMessage)
这篇关于Discord.py 获取消息嵌入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何制作一个在 Python 中提供角色的不和谐机器人How to make a discord bot that gives roles in Python?(如何制作一个在 Python 中提供角色的不和谐机器人?)
Discord 机器人没有响应命令Discord bot isn#39;t responding to commands(Discord 机器人没有响应命令)
你能得到“关于我"吗?Discord 机器人的功能?Can you Get the quot;About mequot; feature on Discord bot#39;s? (Discord.py)(你能得到“关于我吗?Discord 机器人的功能?(不和谐.py))
message.channel.id Discord PYmessage.channel.id Discord PY(message.channel.id Discord PY)
如何在 heroku 上托管我的 discord.py 机器人?How do I host my discord.py bot on heroku?(如何在 heroku 上托管我的 discord.py 机器人?)
discord.py - 自动更改角色颜色discord.py - Automaticaly Change an Role Color(discord.py - 自动更改角色颜色)