i want to add a message with reactions but i want reaction to have certain order. The problem is when i execute command to add that message, the reactions add randomly.
Code:
case "helptest":
indexTest = 0;
comandUser = message.author.username;
message.channel.send(mesajeTest[indexTest]).then(function (message) {
message.react("⏪")
message.react("▶")
message.react("◀")
message.react("⏩")
});
break;
I want that order which is in code to be in reactions message, any solution ?
Solved the problem with async function