当特定用户发送消息时,Discord bot发送重播

时间:2020-10-04 22:14:58

标签: discord.js

userID = "7645876345"

client.on("message", function(message) {
    if (message.author.id === userID) {
        message.react('test');
    }
});

我正试图让Discord机器人在他每次写东西时都回复特定用户。 我将此帖子的userID更改为随机数。

1 个答案:

答案 0 :(得分:-2)

我知道了!我用message.channel.send()替换了message.react