js
1client.on('message', message => { 2 if(message.content === 's'){ 3 message.react('✅') 4 message.channel.send('a') 5 } 6}) 7 8 client.on('messageReactionAdd', (reaction, user) => { 9 const message = reaction.message 10 if (user.bot) return; 11 if (reaction.emoji.name === '✅') 12 message.channel.send('a') 13 })
私はsと打った時にaと出たメッセージにリアクションを付けたいんですね。
ですがこのコードだとsというメッセージにリアクションが付いてしまいます。
どうしたらaというbotが打つメッセージにリアクションを付けれるか教えて頂ければ嬉しいです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。