aboutsummaryrefslogtreecommitdiff
path: root/commands/serverinvite.js
blob: 72660b5bf3486a5a764b331e7701065c29d8cd79 (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("You want a invite to the AleeArmy server? Here's the link: https://discord.gg/97vUx56");
}

exports.conf = {
  enabled: true,

  guildOnly: false,

  aliases: [],

  permLevel: 0

};

exports.help = {

  name: 'serverinvite',

  description: 'The bot will DM you the server invite',

  usage: 'serverinvite'

};