Like if I sent a message replying to a bot message, i want the bot to react to it Language I use => Javascript!
Asked
Active
Viewed 88 times
-1
-
You should provide code that you tried using and the problems that you encountered. – Konrad May 15 '22 at 08:45
-
Please provide enough code so others can better understand or reproduce the problem. – Sigurd Mazanti May 15 '22 at 14:04
1 Answers
0
So this is how you would do that
if (!message.author.bot && message.type === 'REPLY' && message.mentions.repliedUser.id === client.user.id) {
message.react('')
}

Kaspr
- 1,616
- 1
- 8
- 21