Discord.js - 为每个用户而不是所有用户的命令的冷却时间

时间:2018-01-24 21:43:36

标签: javascript node.js discord discord.js

我正在开发一个discord.js僵尸程序,我想对命令进行冷却。

我看过很多关于如何在Google上做这些教程的教程,但所有这些教程都是针对所有命令进行的(所以当用户输入!mycmd时,所有用户必须等待X分钟/秒才能输入再次)。

但是我想为每个用户做这件事(当用户输入时!mycmd,只有这个用户必须等待X分钟/秒,直到用户再次输入它为止。)

有可能吗?

谢谢!

3 个答案:

答案 0 :(得分:4)

是的,这很简单,也可能。

在JS文件的顶部添加:

// First, this must be at the top level of your code, **NOT** in any event!
const talkedRecently = new Set();

现在在命令事件中添加:

    if (talkedRecently.has(msg.author.id)) {
            msg.channel.send("Wait 1 minute before getting typing this again. - " + msg.author);
    } else {

           // the user can type the command ... your command code goes here :)

        // Adds the user to the set so that they can't talk for a minute
        talkedRecently.add(msg.author.id);
        setTimeout(() => {
          // Removes the user from the set after a minute
          talkedRecently.delete(msg.author.id);
        }, 60000);
    }

答案 1 :(得分:0)

即使在重启后,您也可以使用软件包quick.db来跟踪冷却时间。

  let cooldown = 43200000; // 12 hours in ms

  let lastDaily = await db.fetch(`daily_${message.author.id}`);

  if (lastDaily !== null && cooldown - (Date.now() - lastDaily) > 0) {
    // If user still has a cooldown
    let timeObj = ms(cooldown - (Date.now() - lastDaily)); // timeObj.hours = 12
} else {
    // Otherwise they'll get their daily
  }

答案 2 :(得分:0)

你可以使用 wokcommands 或 discord.js-commando 它们是一个非常有用的包,可以轻松处理命令和事件。它有一个内置的冷却时间,您可以使用它。每个用户的冷却时间和全局冷却时间。此外,突击队具有节流功能,例如限速。这就像允许用户使用命令 4 次或您输入的任何内容,然后冷却将执行。

如果您想在机器人重新启动时跟踪冷却时间,Wokcommands 支持 mongodb 并有一个内置的冷却时间集合。

https://www.npmjs.com/package/wokcommands

https://discordjs.guide/commando/