因此,每次有新用户加入时,我都会使用
向用户发送一条消息client.on ("guildMemberAdd", member => {
member.send("WELCOME")})
现在,机器人有什么办法响应该消息? 谢谢!
答案 0 :(得分:1)
您需要在变量中包含member.send()
,然后在其上使用.react()
方法。
所以您的解决方案是:
const msg = await member.send("WELCOME")
await msg.react("?");
答案 1 :(得分:1)
类似于Syntle的答案,但是使用了promises。 (我的首选用途)
member.send("WELCOME").then(function(msg){
msg.react("?");
}