Answers for "how to make a bot react to own message js"

0

how to make a bot react to own message js

message.channel.send("Message").then(msg=> { msg.react("reaction") }).catch();
Posted by: Guest on February-14-2021
0

how to make a bot react to own message js

// 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
})();
Posted by: Guest on February-14-2021

Code answers related to "how to make a bot react to own message js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language