1

我正在使用 javascript 为不和谐机器人创建 RP 配置文件创建设置。我的对话从一个频道开始,然后转到与机器人的私人消息传递。第一个问题被问到,用户的回答存储在数据库中。那工作正常。

当我尝试在与机器人的私人消息中使用另一个命令来移动到 RP 配置文件创建的下一步时,似乎出现了问题。它似乎没有注册正在使用的命令。甚至可以在与机器人的私人消息中使用命令吗?

我使用了与第一个问题相同的代码,改变了需要的代码,但没有任何东西应该破坏代码。它只是看起来甚至没有看到第二个命令,它存储在一个单独的命令文件中。我该怎么做?

module.exports.run = async (bot, message, args) => {
message.author.send(` SECOND QUESTION, **What is the age of your Brawler or Character?**`)
  .then((newmsg) => { //Now newmsg is the message you send to the bot
    newmsg.channel.awaitMessages(response => response.content, {
      max: 1,
      time: 300000,
      errors: ['time'],
    }).then((collected) => {
      newmsg.channel.send(`Your brawler's age is: **${collected.first().content}**

      If you are okay with this age, type !profilegender to continue the profile creation process!

      If you would like to edit your age, please type !profileage`)
        con.query(`UPDATE profile SET age = '${collected.first().content}' WHERE id = ${message.author.id}`);
        console.log("1 record updated!")
    }).catch(() => {
      newmsg.channel.send('Please submit an age for your character. To restart Profile creation, please type "!profilecreate" command in Profile Creation channel on the server.');
    });
  });
}

在此先感谢您的时间!

编辑:这是机器人/客户端正在侦听消息的代码的一部分。

bot.on(`message`, async message => {
  if(message.author.bot) return;
  if(message.channel.type === "dm") return;

  con.query(`SELECT * FROM profile WHERE id = '${message.author.id}'`, (err, rows) => {
    if(err) throw err;

    var sql;

    if(rows.length < 1) {
      var sql = (`INSERT INTO profile (id, username) VALUES (${message.author.id}, '${message.author.tag}')`);
    } else {
      var sql = (`UPDATE profile SET username = '${message.author.tag}' WHERE id = ${message.author.id}`);
    };

    //con.query(sql, console.log);
    //if (err) throw err;
    //console.log("1 record inserted!");
  });

4

1 回答 1

4

从评论回答

如果通道是DMChannel ,则在您client.on("message")的内部有一个 if 检查退出该功能

if(message.channel.type === "dm") return;

为避免这种情况,只需删除此行:这样,机器人将执行命令而不管通道类型如何。如果您只想在某些通道中允许某些命令,您可以client.on("message")在命令本身的函数中或函数中执行此操作。

于 2018-07-07T12:16:56.493 回答