ボットのメッセージのみに反応して返信するサンプル
ボットのメッセージのみに反応して返信する
サンプル
code:js
client.on('messageCreate', message => {
if (message.author.id === client.user.id) return;//二重反応を防ぐ
if (message.author.bot) {
message.channel.send('hay')
}
})
関連
ユーザーがボットかどうか確認する