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
x
7
1
const Discord = require('discord.js'); //defining discord
2
const client = new Discord.Client(); //getting your bot
3
4
client.on('message', async message => { //when a user sends a message
5
6
});
7
Then you would need to tell the bot what it does after that:
JavaScript
1
11
11
1
const Discord = require('discord.js'); //defining discord
2
const client = new Discord.Client(); //getting your bot
3
4
client.on('message', async message => { //when a user sends a message
5
if (message.author.bot) return; //If a bot sent the message we want to ignore it.
6
7
if (message.content.toLowerCase() === 'what message your looking for' { //what your looking for (make sure this string is all in lower case)
8
//what you want the bot to do after the message you are looking for has been sent
9
}
10
});
11
Now, if you want the bot to add the reaction to the message you will do the following:
JavaScript
1
12
12
1
const Discord = require('discord.js'); //defining discord
2
const client = new Discord.Client(); //getting your bot
3
4
client.on('message', async message => { //when a user sends a message
5
if (message.author.bot) return; //If a bot sent the message we want to ignore it.
6
7
if (message.content.toLowerCase() === 'what message your looking for' { //what your looking for (make sure this string is all in lower case)
8
await message.react('👍'); //reacting to the message with a thumbs up emoji
9
await message.react('👎'); //reacting to the message with a thumbs down emoji
10
}
11
});
12
If you wanted the bot to reply to the message use:
JavaScript
1
11
11
1
const Discord = require('discord.js'); //defining discord
2
const client = new Discord.Client(); //getting your bot
3
4
client.on('message', async message => { //when a user sends a message
5
if (message.author.bot) return; //If a bot sent the message we want to ignore it.
6
7
if (message.content.toLowerCase() === 'what message your looking for' { //what your looking for (make sure this string is all in lower case)
8
message.channel.send('The bots message here') //what you want the bot to reply with
9
}
10
});
11
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
1
31
31
1
const Discord = require('discord.js'); //defining discord
2
const client = new Discord.Client(); //getting your bot
3
4
client.on('message', async message => { //when a user sends a message
5
if (message.author.bot) return; //If a bot sent the message we want to ignore it.
6
7
if (message.content.toLowerCase() === 'what message your looking for' { //what your looking for (make sure this string is all in lower case)
8
message = await message.channel.send('The bots message here') //waiting for the message to be sent
9
10
const filter = (reaction, user) => { //filtering the reactions from the user
11
return (
12
['👎', '👍'].includes(reaction.emoji.name) && user.id === message.author.id
13
);
14
}
15
message.awaitReactions(filter, { max: 1, time: 60000, errors: ['time'] }) //awaiting the reactions - remember the time is in milliseconds
16
.then((collected) => {
17
const reaction = collected.first();
18
19
if (reaction.emoji.name === '👍') { //if the reaction was a thumbs up
20
//A action
21
reaction.users.remove(message.author.id) //If you wanted to remove the reaction
22
} else { //if the reaction was a thumbs down
23
//B action
24
reaction.users.remove(message.author.id) //If you wanted to remove the reaction
25
}
26
}).catch((collected) => { //when time is up
27
//C action
28
});
29
}
30
});
31
If you wanted to await message from the user’s message you would do the same thing except change:
JavaScript
1
3
1
if (message.content.toLowerCase() === 'what message your looking for' { //what your looking for (make sure this string is all in lower case)
2
message.channel.send('The bots message here') //sending the message but not awaiting reactions from it
3