2020-04-20 04:52:50 +00:00
|
|
|
// Copyright 2020 Emily J. / mudkipscience and contributors. Subject to the AGPLv3 license.
|
2020-04-20 03:02:10 +00:00
|
|
|
|
2020-04-08 19:48:53 +00:00
|
|
|
exports.conf = {
|
2020-04-11 09:30:51 +00:00
|
|
|
enabled: true,
|
|
|
|
guildOnly: false,
|
|
|
|
aliases: [],
|
|
|
|
permLevel: 'User',
|
|
|
|
requiredPerms: [],
|
|
|
|
cooldown: 2000
|
|
|
|
}
|
2020-04-08 19:48:53 +00:00
|
|
|
|
|
|
|
exports.help = {
|
2020-04-11 09:30:51 +00:00
|
|
|
name: 'support',
|
|
|
|
category: 'Bot',
|
|
|
|
description: 'Sends a link to my support/development server.',
|
|
|
|
usage: 'support',
|
|
|
|
parameters: ''
|
|
|
|
}
|
2020-04-08 19:48:53 +00:00
|
|
|
|
2020-04-11 09:30:51 +00:00
|
|
|
exports.run = async (client, message, args, level, data) => {
|
|
|
|
message.channel.send('Here you go! Hopefully we can help you here :3 https://discord.gg/HCF8mdv')
|
|
|
|
}
|