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/hidden/premium.js

22 lines
523 B
JavaScript

const { Command } = require('discord-akairo');
class premiumCommand extends Command {
constructor() {
super('premium', {
aliases: ['premium'],
prefix: '!',
category: 'hidden',
description: {
content: 'premium',
usage: '',
examples: ['']
}
});
}
async exec(message) {
return message.reply('EPIC TF2 FEATURE HERE !!!!!!111111 YOU CAN FLY AND CHEAT !!!!!!!!!!!!!!!!! ALSO PREMIUM SONG AND ANNOY EVERYONE AND FLEX ON EM HATERS WITH CUSTOM SKIN!!!!');
}
}
module.exports = premiumCommand;