Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Discord.js message after receiving emoji reaction

It it possible to make a Discord bot send a message once a previous message has received a reaction? I was thinking about something like:

if(cmd === `${prefix}list`) {
    var i = 0;

    let embed = new Discord.RichEmbed()
      .addField("List", "Content");

    let anotherembed = new Discord.RichEmbed()
      .addField("Message", "List has been completed!");

    return message.channel.send(embed);

    do {
      message.channel.send(anotherembed + 1);
    }
    while (i !== 0) && (reaction.emoji.name === "βœ…");

}
like image 447
Ned Avatar asked Dec 13 '22 17:12

Ned


1 Answers

That's not something you should do.
What you want is message.awaitReactions.
There is a great guide by the DiscordJS team and community that has a great example for awaitReactions.
Here is the link and an example they used:

message.react('πŸ‘').then(() => message.react('πŸ‘Ž'));

const filter = (reaction, user) => {
    return ['πŸ‘', 'πŸ‘Ž'].includes(reaction.emoji.name) && user.id === message.author.id;
};

message.awaitReactions(filter, { max: 1, time: 60000, errors: ['time'] })
    .then(collected => {
        const reaction = collected.first();

        if (reaction.emoji.name === 'πŸ‘') {
            message.reply('you reacted with a thumbs up.');
        }
        else {
            message.reply('you reacted with a thumbs down.');
        }
    })
    .catch(collected => {
        console.log(`After a minute, only ${collected.size} out of 4 reacted.`);
        message.reply('you didn\'t react with neither a thumbs up, nor a thumbs down.');
    });

You basically need a filter, that only allows for a range of emojis, and a user to "use" them.

And also somewhere on your code you have:

return message.channel.send(embed);

You should remove the return part, or else it will just return and don't do the rest of the code.

like image 95
AndrΓ© Avatar answered Dec 26 '22 01:12

AndrΓ©