“Discord.js Stats Command” Ответ

Discord JS Stats Command

client.on('message', message => {
    if (message.content.toLowerCase().startsWith(prefix + 'stats')){
        if(message.author.bot) return;
        const exampleEmbed = new Discord.MessageEmbed()
            .setColor('RANDOM')
            .setTitle("Bot's Live Status")
            .addField(" \u200B ", "**Channels** : ` " + `${client.channels.cache.size}` + " `")
            .addField(" \u200B ", "**Servers** : ` " + `${client.guilds.cache.size}` + " `")
            .addField(" \u200B ", "**Users** : ` " + `${client.users.cache.size}` + " `")
        message.channel.send(exampleEmbed);
    }
})
Undefined

Discord.js Stats Command

const ToTalSeconds = (client.uptime / 1000);
const Days = Math.floor(ToTalSeconds / 86400);
const Hours = Math.floor(ToTalSeconds / 3600);
const Minutes = Math.floor(ToTalSeconds / 60);
const Seconds = Math.floor(ToTalSeconds % 60);

if (message.content == "tmb!uptime") {
        message.channel.send(`${Days} Giorni, ${Hours} Ore, ${Minutes} Minuti, ${Seconds} Secondi`)
        
     //it doesn't work for me
Lory Pelli

Ответы похожие на “Discord.js Stats Command”

Вопросы похожие на “Discord.js Stats Command”

Больше похожих ответов на “Discord.js Stats Command” по TypeScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования