diff --git a/commands/admin/prune.js b/commands/admin/prune.js new file mode 100644 index 00000000..13973b06 --- /dev/null +++ b/commands/admin/prune.js @@ -0,0 +1,27 @@ +const { Command } = require('discord.js-commando'); +module.exports = class PruneCommand extends Command { + constructor(client) { + super(client, { + name: 'prune', + group: 'fun', + memberName: 'prune', + description: 'Replies with a meow, kitty cat.', + clientPermissions: ['MANAGE_MESSAGES'], + userPermissions: ['MANAGE_MESSAGES'], + args: [ + { + key: 'amount', + prompt: 'How many messages would you like to delete?', + type: 'integer', + } + ] + }); + } + + run(message, { amount }) { + if (amount < 2 || amount > 100) { + return message.reply('you need to input a number between 2 and 100.'); + } + message.channel.bulkDelete(amount, true); + } +}; \ No newline at end of file