how to make a bot react to own message js

Solutions on MaxInterview for how to make a bot react to own message js by the best coders in the world

showing results for - "how to make a bot react to own message js"
Valentina
01 May 2016
1message.channel.send("Message").then(msg=> { msg.react("reaction") }).catch();
2
Dinah
04 Oct 2017
1// or for multiple reactions
2
3(async () => {
4let m = await message.channel.send("message");
5await m.react("reaction_1");
6await m.react("reaction_2");
7//So on and so forth
8})();