📌  相关文章
📜  如何让机器人对自己的消息 js 做出反应 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:15.233000             🧑  作者: Mango

代码示例2
// 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
})();