Skip to content Skip to sidebar Skip to footer

How To Align Fields In Discord.py Embedded Messages

I am creating an embedded discord.py message that will look like Each field's value has a string consisting of words and a new line followed by each word. As you can see though, t

Solution 1:

embed = discord.Embed(title='Live Match Data')
embed.add_field(name = 'Blue Team', value= "Something", inline = True)
embed.add_field(name = 'Champion', value = "Something", inline = True)
embed.add_field(name = 'Rank', value = "Something", inline = True)

embed.add_field(name = 'Red Team ', value = "Something", inline = True)
embed.add_field(name = 'Champion', value = "Something", inline = True)
embed.add_field(name = 'Rank', value = "Something", inline = True)

embed.set_footer(text=ctx.author.name, icon_url = ctx.author.avatar_url)


await ctx.send(embed=embed)


Post a Comment for "How To Align Fields In Discord.py Embedded Messages"