You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/general/spoiler.js

40 lines
802 B
JavaScript

const { Command } = require('discord-akairo');
class spoilerCommand extends Command {
constructor() {
super('spoiler', {
aliases: ['spoiler'],
category: 'general',
clientPermissions: ['SEND_MESSAGES'],
args: [
{
id: 'text',
type: 'string',
prompt: {
start: 'Write something so i can say it back in spoiler',
},
match: 'rest'
}
],
description: {
content: 'Replace every letter in your text with letter spoiler',
usage: 'this is epic',
examples: ['this is epic']
}
});
}
async exec(message, args) {
let text = args.text;
if (!text)
return;
text = text.split('').join('||||');
// Send the final text
message.delete();
return message.channel.send('||' + text + '||');
}
}
module.exports = spoilerCommand;