2020-04-08 19:48:53 +00:00
|
|
|
exports.conf = {
|
|
|
|
enabled: true,
|
|
|
|
guildOnly: false,
|
|
|
|
aliases: [],
|
|
|
|
permLevel: 'User',
|
|
|
|
requiredPerms: []
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.help = {
|
|
|
|
name: 'support',
|
|
|
|
category: 'Utility',
|
2020-04-09 07:05:44 +00:00
|
|
|
description: "Sends a link to my support/development server.",
|
2020-04-08 19:48:53 +00:00
|
|
|
usage: 'support'
|
|
|
|
};
|
|
|
|
|
2020-04-09 07:05:44 +00:00
|
|
|
exports.run = async (client, message, args, level, data) =>{
|
2020-04-08 19:48:53 +00:00
|
|
|
message.channel.send('Use this link to join my support server: https://discord.gg/' + client.config.support.id);
|
|
|
|
};
|