不和谐中的私人消息命令

Private message commands in discord

我正在使用 javascript 为 discord 机器人创建 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/client 正在侦听消息的代码的一部分。

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!");
  });

回复评论

在您的 client.on("message") 内部有一个 if 检查,如果频道是 DMChannel

则退出函数
if(message.channel.type === "dm") return;

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