首页 > 解决方案 > discord.js 机器人消息和响应有时有效,有时无效

问题描述

我试图让我的机器人用多个单词做出响应。我已将其设置为响应 30 多个单词。有时它会回应,有时它不会回应,有些词会回应,有些则不会。我不明白问题是什么?

下面是我的代码片段:

const test1 = '`test 123`';
const test2 = '`test 456`';


bot.on("message", function (message) {

  if (message.content.includes(test1)) {

    message.channel.send('hello');
  }

  if (message.content.includes(test2)) {


    message.channel.send('goodbye');

  }

标签: botsdiscorddiscord.js

解决方案


推荐阅读