mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-06 14:20:51 +02:00
33 lines
851 B
JavaScript
33 lines
851 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
module.exports = class CommandLeaderboardCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'command-leaderboard',
|
|
aliases: ['cmd-leaderboard', 'cmd-board'],
|
|
group: 'util',
|
|
memberName: 'command-leaderboard',
|
|
description: 'Responds with the most used commands on this shard since the last restart.',
|
|
guarded: true,
|
|
args: [
|
|
{
|
|
key: 'page',
|
|
prompt: 'Which page do you want to view?',
|
|
type: 'integer',
|
|
default: 1
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg, { page }) {
|
|
let i = 0;
|
|
const list = this.client.registry.commands
|
|
.filter(cmd => cmd.uses)
|
|
.sort((a, b) => b.uses - a.uses)
|
|
.map(cmd => `**${++i}.** ${cmd.name} (${cmd.uses} Uses)`)
|
|
.slice((page - 1) * 10, page * 10);
|
|
return msg.say(list.split('\n') || 'None yet.');
|
|
}
|
|
};
|