aboutsummaryrefslogtreecommitdiff
path: root/commands/botinvite.js
blob: e0e43adf8001bc30ab53d9e6b46df08520f96f43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const Discord = require('discord.js');
exports.run = (client, message, args, config) => {
message.reply(':arrow_left: Continue in DMs.');
message.author.sendMessage("AleeBot on your server? Great! Here's the link: https://goo.gl/KDQyrp");
}

exports.conf = {
  enabled: true,

  guildOnly: false,

  aliases: [],

  permLevel: 0

};

exports.help = {

  name: 'botinvite',

  description: 'Now you can invite your bot to your server!',

  usage: 'botinvite'

};