I’m trying to update a discord.embed with reaction:
JavaScript
x
24
24
1
@bot.command()
2
async def expedition(ctx, expe, date, heure):
3
embed=discord.Embed(title="Expedition", description= expe + "n" + date + " : " + heure + "nFor " + ctx.message.author.mention, color=0xFF5733)
4
embed.add_field(name="tank", value="1 slots", inline=True)
5
embed.add_field(name="heal", value="1 slots", inline=True)
6
embed.add_field(name="dps", value="3 slots", inline=True)
7
msg = await ctx.send(embed=embed)
8
await msg.add_reaction('N{SHIELD}')
9
await msg.add_reaction('🧑•⚕️')
10
await msg.add_reaction('N{CROSSED SWORDS}')
11
await msg.add_reaction('❌')
12
13
@client.event
14
async def on_raw_reaction_add(reaction,user):
15
if reaction.emoji == 'N{SHIELD}':
16
embed.set_field_at(0,name="tank",value=user.mention)
17
print("test 1")
18
if reaction.emoji == '🧑•⚕️':
19
embed.set_field_at(1,name="heal",value=user)
20
print("2 test")
21
if reaction.emoji == 'N{CROSSED SWORDS}':
22
embed.set_field_at(2,name="dps",value=user)
23
print("D la réponse D")
24
I create a discord embed with some default information, and add the reaction I want to use, the idea is that when someone react with one of the select reaction, the name of the user is added to the field.
( I actually have 4 commands using the same “template” with the same reaction, and I want them all to work individually)
Advertisement
Answer
You need to use wait_for
for this.
Also on_raw_reaction_add
takes only one argument that is payload
, I believe you are trying to use on_reaction_add
Remove the while loop if you wish to consider only the first reaction that is added
JavaScript
1
23
23
1
async def expedition(ctx, expe, date, heure):
2
embed=discord.Embed(title="Expedition", description= expe + "n" + date + " : " + heure + "nFor " + ctx.message.author.mention, color=0xFF5733)
3
embed.add_field(name="tank", value="1 slots", inline=True)
4
embed.add_field(name="heal", value="1 slots", inline=True)
5
embed.add_field(name="dps", value="3 slots", inline=True)
6
msg = await ctx.send(embed=embed)
7
await msg.add_reaction('N{SHIELD}')
8
await msg.add_reaction('🧑•⚕️')
9
await msg.add_reaction('N{CROSSED SWORDS}')
10
await msg.add_reaction('❌')
11
12
while True:
13
reaction, user = await client.wait_for("reaction_add", check=lambda reaction, user: reaction.message.id == msg.id)
14
if reaction.emoji == 'N{SHIELD}':
15
embed.set_field_at(0,name="tank",value=user.mention)
16
print("test 1")
17
if reaction.emoji == '🧑•⚕️':
18
embed.set_field_at(1,name="heal",value=user)
19
print("2 test")
20
if reaction.emoji == 'N{CROSSED SWORDS}':
21
embed.set_field_at(2,name="dps",value=user)
22
print("D la réponse D")
23