summaryrefslogtreecommitdiff
path: root/src/commands/utility/invite.ts
blob: 4e8150eac8aa6427af191fc9dfb59f5abe469828 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Command, CommandoMessage } from 'discord.js-commando';
import emoji from 'emoji-random';
import { MessageEmbed } from 'discord.js';

module.exports = class InviteUtility extends Command {
    constructor(client) {
        super(client, {
            name: 'invite',
            aliases: ['inv'],
            group: 'utility',
            memberName: 'invite',
            description: 'Gives you the bot\'s invite link.',
            examples: ['uwu!invite', 'uwu!inv'],
            userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
            clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY']
        });
    }
    run(msg: CommandoMessage) {
        msg.reply('https://crack.cf/uwu')
    }
};