forked from Supositware/Haha-Yes
26 lines
No EOL
1.1 KiB
JavaScript
26 lines
No EOL
1.1 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const blacklist = require('../../json/blacklist.json')
|
|
|
|
module.exports = class statsCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'stats',
|
|
group: 'utility',
|
|
memberName: 'stats',
|
|
description: 'Show bot stats.',
|
|
});
|
|
}
|
|
|
|
async run(message) {
|
|
if(blacklist[message.author.id])
|
|
return message.channel.send("You are blacklisted")
|
|
let totalSeconds = (this.client.uptime / 1000);
|
|
let days = Math.floor(totalSeconds / 86400);
|
|
let hours = Math.floor(totalSeconds / 3600);
|
|
totalSeconds %= 3600;
|
|
let minutes = Math.floor(totalSeconds / 60);
|
|
let seconds = totalSeconds.toFixed(0) % 60;
|
|
let uptime = `${days} days, ${hours} hours, ${minutes} minutes and ${seconds} seconds`;
|
|
return message.channel.send(`Servers: \`${this.client.guilds.size}\`\nChannels: \`${this.client.channels.size}\`\nUsers: \`${this.client.users.size}\`\nBot uptime: \`${uptime}\``);
|
|
}
|
|
}; |