我试图使用命令!!flip
制作一个不和谐机器人。我尝试了这个,但得到了这个错误:
所以,我接着尝试了bot.channel.sendmessage
并收到了这条消息:
这是我的代码:
if (message.content === "!!flip") {
var result = Math.floor((Math.random() * 2) + 1);
if (result == 1) {
bot.reply(message, "The coin landed on heads");
} else if (result == 2) {
bot.reply(message, "The coin landed on tails");
}
}

答案 0 :(得分:1)
好。首先,帮我们一个忙,并在尝试使用Discord.JS之前阅读docs。对于这种情况,请改用message.reply("The coin landed on Tails")
。