-1

Like if I sent a message replying to a bot message, i want the bot to react to it Language I use => Javascript!

1 Answers1

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