Skip to content
Advertisement

Discord.JS How to wait for member reaction

I am making bot to manage my multiple Discord guilds. And I’d like to make confirmation system, like:

  • User does X thing,
  • Bot sends message in sufficient channel,
  • Bot waits for user to react with :thumbdsup: or :thumbsdown: up to 60 seconds
  • If thumbs up, do A, else – do B. If time is up, do C action

How can I build system like that, due to I have no idea.

Advertisement

Answer

Adding and Setting Up the Event Listener

First we start by defining discord.js & adding an event listener:

JavaScript

Then you would need to tell the bot what it does after that:

JavaScript

Now, if you want the bot to add the reaction to the message you will do the following:

JavaScript

If you wanted the bot to reply to the message use:

JavaScript

Awaiting Reactions

Here it all depends on if you want to await reactions on the bot’s message or the user’s message.
If you would like to await reactions from the bot’s message use:

JavaScript


If you wanted to await message from the user’s message you would do the same thing except change:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement