blob: f029fcb56c37a6fc1e50e1b38bc0b9762c1680c9 (
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.'
};
|