mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
24 lines
933 B
JavaScript
24 lines
933 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']
|
|
});
|
|
}
|
|
|
|
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}`);
|
|
return message.say(`I've been active on this shard for: **${moment.duration(this.client.uptime).format('d[ days], h[ hours], m[ minutes, and ]s[ seconds]')}** in **${this.client.guilds.size} Servers.**`);
|
|
}
|
|
};
|