Files
xiao/commands/text-edit/repeat.js
T
2017-09-29 00:49:17 +00:00

28 lines
717 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class RepeatCommand extends Command {
constructor(client) {
super(client, {
name: 'repeat',
group: 'text-edit',
memberName: 'repeat',
description: 'Repeat text over and over and over and over (etc).',
args: [
{
key: 'text',
prompt: 'What text would you like to repeat over and over and over and over?',
type: 'string',
validate: text => {
if (!text.includes('@everyone') && !text.includes('@here')) return true;
return 'Invalid text, please do not repeat everyone or here mentions.';
}
}
]
});
}
run(msg, { text }) {
return msg.say(text.repeat(2000).substr(0, 2000));
}
};