1
0
Fork 0

Show stats of bot

Commando
Loïc Bersier 6 years ago
parent a4f8f53a67
commit fdd22425f9

@ -0,0 +1,15 @@
const { Command } = require('discord.js-commando');
module.exports = class MeowCommand extends Command {
constructor(client) {
super(client, {
name: 'stats',
group: 'owner',
memberName: 'stats',
description: 'Show bot stats.',
});
}
run(message) {
return message.channel.send(`Servers: ${this.client.guilds.size}\nChannels: ${this.client.channels.size}\nUsers : ${this.client.users.size}`);
}
};
Loading…
Cancel
Save