繁体   English   中英

显示冷却剩余时间

[英]show time left on cooldown

我希望显示冷却时间剩余的时间,但我不确定是否可以使用我目前拥有的格式来完成。 是否可以? 或者有更好的方法来使用冷却时间吗? 我删掉了围绕这个的大部分代码,因为它不相关。

let cooldown = new Set();
if(msgObject.content.startsWith("-eat")) {        

    let amount = Math.floor(Math.random() * 2500) + 1;
    let Channel = msgObject.channel.id

    if(Channel != `623195917083738136` && Channel != `623195981919289344` ){//bot test
        msgObject.channel.send('Cannot use command here, ' + msgObject.author)
            .then(msg => {
                (msg as Discord.Message).delete(20000)
                    .catch(console.error);
            })
        return;
    }

    if(cooldown.has(msgObject.author.id)){
        msgObject.channel.send(`You have to wait 3 hours to use this command again!`)
            .then(msg => {
                (msg as Discord.Message).delete(20000)
                    .catch(console.error);
            })
        return;
    }
    if(msgObject.content.startsWith("-eat")){
        cooldown.add(msgObject.author.id)

    }

    setTimeout(() => {
        cooldown.delete(msgObject.author.id)
    }, cdseconds * 1000);

    {let embed = new Discord.RichEmbed()

        .setAuthor(`${msgObject.author.tag}`, msgObject.author.displayAvatarURL) 

        .setDescription(`${msgObject.author}, ${(eat[index1])}${amount} DinoBucks`)

        .setColor("RANDOM");

        msgObject.channel.send(embed)
            .then(msg => {
                (msg as Discord.Message).delete(20000)
                    .catch(console.error);
            })  
        }      
    } 
}

这对于您当前的设置是不可能的。 但是,您可以使用类似于Discord.js 指南中的内容

// a collection of user ids to when (the timestamp) they used the command
const timestamps = new Discord.Collection<string, number>();

if (msgObject.content.startsWith("-eat")) {
    const now = Date.now();
    const cooldownAmount = cdseconds * 1000;

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

        if (now < expirationTime) {
            const timeLeft = (expirationTime - now) / 1000;
            return msgObject.reply(`You have to wait ${timeLeft.toFixed(1)} seconds to use this command again!`)
        }
    }

    // for v11:
    // const embed = new Discord.RichEmbed()
    const embed = new Discord.MessageEmbed()
        .setAuthor(`${msgObject.author.tag}`, msgObject.author.displayAvatarURL)
        // rest of command...

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

针对 Discord.js v13 更新。

使用您的冷却定义格式,这是不可能的。 我建议您为此使用discord.colletion ,有一个很好的示例实现。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM