Как я могу добавить время восстановления для рабочей команды (экономика, валюта)

#javascript #node.js #discord.js

#javascript #node.js #discord.js

Вопрос:

Итак, я пытаюсь создать бот для экономических разногласий, но я не знаю, как сделать 3-часовую перезарядку для рабочей команды после того, как пользователь использует ее, поэтому для тех, кто не понимает

я: !работа

бот: вы получили 123 деньги во время работы.

я: !работа

бот: вам нужно подождать 3 часа, прежде чем снова работать.

Это мой код для рабочей команды

   if (message.content.toLowerCase().startsWith(prefixS.prefix   'work')) {
    const inventoryS = await inventory.findOne({ userID: message.author.id, guildID: message.guild.id });
    const payment = Math.floor(Math.random() * 200);
    inventoryS.work = parseInt(payment)
    inventoryS.save()
    message.channel.send({ embeds: [new Discord.MessageEmbed().setAuthor(message.author.username).setTitle('⚒️⚒️').setColor('BLUE')] }).then((message) => {
      setTimeout(function () {
        function doRandHT() {
          var rand = [`You worked an extra night and got ${inventoryS.work}`, `You worked an extra day and got ${inventoryS.work}`, `Your boss just gave you ${inventoryS.work} for just sitting in your chair`];

          return rand[Math.floor(Math.random() * rand.length)];
        }
        message.edit({ embeds: [new Discord.MessageEmbed().setTitle(doRandHT()).setColor('BLUE')] }).then(() => {
          inventoryS.currency = parseInt(inventoryS.currency)   parseInt(inventoryS.work)
          inventoryS.save()
            }
          });
        })

      }, 3000)
    })
  }
 

Спасибо

Ответ №1:

Это руководство по восстановлению для discord.js v12, отчасти похож, если вы используете v13.

В командном файле:

 module.exports = {
name: 'example',
cooldown: 5,
execute(message) {
    // ...
},
};
 

В главном файле:

 client.cooldowns = new Discord.Collection();
const { cooldowns } = client;

if (!cooldowns.has(command.name)) {
    cooldowns.set(command.name, new Discord.Collection());
}

const now = Date.now();
const timestamps = cooldowns.get(command.name);
const cooldownAmount = (command.cooldown || 3) * 1000;

if (timestamps.has(message.author.id)) {
    const expirationTime = timestamps.get(message.author.id)   cooldownAmount;

    if (now < expirationTime) {
        const timeLeft = (expirationTime - now) / 1000;
        return message.reply(`please wait ${timeLeft.toFixed(1)} more second(s) before reusing the `${command.name}` command.`);
    }
}

timestamps.set(message.author.id, now);
setTimeout(() => timestamps.delete(message.author.id), cooldownAmount);
 

Перед выполнением команды обязательно выполните этот код.