Files
xiao/commands/botinfo/uptime.js
T
Daniel Odendahl Jr 40a4af36c4 Formatting
2017-03-23 01:35:22 +00:00

24 lines
958 B
JavaScript

const commando = require('discord.js-commando');
const moment = require('moment');
require('moment-duration-format');
module.exports = class UptimeCommand extends commando.Command {
constructor(Client) {
super(Client, {
name: 'uptime',
group: 'botinfo',
memberName: 'uptime',
description: 'Displays how long the bot has been active. (;uptime)',
examples: [';uptime']
});
}
async run(message) {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
console.log("[Command] " + message.content);
message.channel.send("I've been active on this shard for: **" + moment.duration(this.client.uptime).format('d[ days], h[ hours], m[ minutes, and ]s[ seconds]') + "** in a total of " + this.client.guilds.size + " Servers.");
}
};