forked from Supositware/Haha-Yes
Chatbleach ( just spam a bunch of dot to "clean" a channel )
This commit is contained in:
parent
b691232eaf
commit
7eff6dd931
1 changed files with 19 additions and 0 deletions
19
commands/admin/cb.js
Normal file
19
commands/admin/cb.js
Normal file
|
@ -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.')
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in a new issue