Skip to content
Advertisement

discord.embed update with role reaction

I’m trying to update a discord.embed with reaction:

JavaScript

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
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement