我如何让漫游器对刚刚通过ID不和谐发送的消息做出反应?
在这种情况下,我已经收到消息ID:
if(inf.t !== "MESSAGE_UPDATE") return
let here = inf.d.id;
if(inf.d.id === `${here}`){
message.channel.send(`${here}`);
message.react("✅"); //this react is just to this reaction is only in
//the message that I sent the command
}
});
答案 0 :(得分:1)