From 7eff6dd931daee23084aa4fa5b8efa49847bb114 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Thu, 20 Sep 2018 20:47:17 +0200 Subject: [PATCH] Chatbleach ( just spam a bunch of dot to "clean" a channel ) --- commands/admin/cb.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 commands/admin/cb.js diff --git a/commands/admin/cb.js b/commands/admin/cb.js new file mode 100644 index 0000000..bc31296 --- /dev/null +++ b/commands/admin/cb.js @@ -0,0 +1,19 @@ +const { Command } = require('discord.js-commando'); +module.exports = class cbCommand extends Command { + constructor(client) { + super(client, { + name: 'cb', + group: 'admin', + memberName: 'cb', + description: 'spam a bunch of dot to quickly make something disspear', + clientPermissions: ['MANAGE_MESSAGES'], + userPermissions: ['MANAGE_MESSAGES'], + guildOnly: true, + }); + } + + run(message) { + message.say('.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.\n.') + } +}; +