mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
26 lines
591 B
JavaScript
26 lines
591 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
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'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg, args) {
|
|
const { text } = args;
|
|
const converted = text.repeat(2000).substr(0, 1999);
|
|
return msg.say(`\u180E${converted}`);
|
|
}
|
|
};
|