Discord.js - 每个用户而非所有用户的命令冷却时间
Discord.js - Cooldown for a command for each user not all users
我正在开发一个 discord.js 机器人,我想为命令设置冷却时间。
我在 Google 上看到了很多关于如何执行此操作的教程,但是所有这些教程都是针对所有命令执行的(因此当用户键入 !mycmd 时,所有用户都必须等待 X minutes/seconds 直到可以再次输入)。
但我想为每个用户都这样做(当用户键入 !mycmd 时,只有该用户必须等待 X minutes/seconds 直到用户可以再次键入)。
可以吗?
谢谢!
是的,这既简单又可行。
在你的 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);
}
您可以使用包 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
}
您可以使用 wokcommands 或 discord.js-commando 它们是一个非常有用的包,可以轻松处理命令和事件。它有一个内置的冷却时间,您可以使用它。每个用户的冷却时间和全局冷却时间。此外,commando 具有节流功能,例如限速。这就像允许用户使用命令 4 次或您输入的任何内容,然后冷却时间将执行。
如果您想在机器人重新启动时跟踪冷却时间,Wokcommands 支持 mongodb 并且有一个内置的冷却时间集合。
我正在开发一个 discord.js 机器人,我想为命令设置冷却时间。
我在 Google 上看到了很多关于如何执行此操作的教程,但是所有这些教程都是针对所有命令执行的(因此当用户键入 !mycmd 时,所有用户都必须等待 X minutes/seconds 直到可以再次输入)。
但我想为每个用户都这样做(当用户键入 !mycmd 时,只有该用户必须等待 X minutes/seconds 直到用户可以再次键入)。
可以吗?
谢谢!
是的,这既简单又可行。
在你的 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);
}
您可以使用包 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
}
您可以使用 wokcommands 或 discord.js-commando 它们是一个非常有用的包,可以轻松处理命令和事件。它有一个内置的冷却时间,您可以使用它。每个用户的冷却时间和全局冷却时间。此外,commando 具有节流功能,例如限速。这就像允许用户使用命令 4 次或您输入的任何内容,然后冷却时间将执行。
如果您想在机器人重新启动时跟踪冷却时间,Wokcommands 支持 mongodb 并且有一个内置的冷却时间集合。