This is the code I have and I was wondering how do I make it so that the bot embeds the requirements.
JavaScript
x
7
1
@client.command()
2
async def partner(ctx):
3
await ctx.send("""__Requirements:__
4
1)
5
2)
6
""")
7
Advertisement
Answer
Here:
JavaScript
1
7
1
@client.command()
2
async def partner(ctx):
3
embed = discord.Embed(title="Requirements:")
4
embed.add_field(name="(1) Title", value="Body 1", inline=False)
5
embed.add_field(name="(2) Title", value="Body 2", inline=False)
6
await ctx.send(embed=embed)
7