blob: 8c798d1565d63ef4aaf175dbf6e64b82b3dc8d8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { Command, CommandoMessage } from 'discord.js-commando';
import emoji from 'emoji-random';
module.exports = class InviteBot extends Command {
constructor(client) {
super(client, {
name: 'invite',
aliases: ['inv'],
group: 'bot',
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 ' + emoji.random())
}
};
|