How do I also include normal content in an embed message just like the following image?
for instance, this is a normal embed message.
embed = discord.Embed(title="example", description="embed content")
await ctx.reply(embed=embed)
CodePudding user response:
You are able to add content to a message as well as an Embed by specifying the content in the reply()
parameters.
from discord import Embed
content = "content"
embed = Embed(title="example", description="embed content")
await ctx.reply(content=content, embed=embed)
CodePudding user response:
Just use keyword argument for content await ctx.reply(content='content', embed=embed)
docs