aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility/invite.js
blob: 933e9ba5672be85f359f5cca590e20eeb20f85e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/** **************************************
 *
 *   Invite: Plugin for PokeBot that provides gives the user information about the bot.
 *   Copyright (C) 2018 TheEdge, jtsshieh, Alee
 *
 *   Licensed under the Open Software License version 3.0
 *
 * *************************************/

exports.run = (bot, msg) => {
  msg.channel.send('You can invite me by visiting https://discordbots.org/bot/417096530596724737.');
};

exports.conf = {
  aliases: [],
  guildOnly: true,
};

exports.help = {
  name: 'invite',
  description: 'Gives the user a link to invite the bot.',
};