Answer the question
In order to leave comments, you need to log in
How can I make it so that when I click on a certain emoji in a message, and that the bot then throws this message into another channel?
I want to know how to make it so that when someone writes a message to a certain channel, and so that under it there are two emoji right away - a tick and a cross. Then, when I click on the checkmark, so that the message written by the user is sent to another channel by the bot, and when I click on the cross, so that nothing happens.
Answer the question
In order to leave comments, you need to log in
message detection:
client.on("message", message => {
. . .
})
message.channel.send("Сообщение").then(message => {
message.react("реакция")
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question