diff --git a/commands/support.js b/commands/support.js new file mode 100644 index 0000000..7042430 --- /dev/null +++ b/commands/support.js @@ -0,0 +1,18 @@ +exports.conf = { + enabled: true, + guildOnly: false, + aliases: [], + permLevel: 'User', + requiredPerms: [] +}; + +exports.help = { + name: 'support', + category: 'Utility', + description: "Sends a link to " + client.config.botName + "'s support/development server.", + usage: 'support' +}; + +exports.run = async (client, message, args) =>{ + message.channel.send('Use this link to join my support server: https://discord.gg/' + client.config.support.id); +}; \ No newline at end of file