cara membuat bot bereaksi terhadap pesan sendiri js
message.channel.send("Message").then(msg=> { msg.react("reaction") }).catch();
Lonely Lizard
message.channel.send("Message").then(msg=> { msg.react("reaction") }).catch();
// or for multiple reactions
(async () => {
let m = await message.channel.send("message");
await m.react("reaction_1");
await m.react("reaction_2");
//So on and so forth
})();