Reformatted stuff, added data to imports
This commit is contained in:
parent
95d84cfaef
commit
b2531d49b0
10 changed files with 184 additions and 60 deletions
21
commands/help.js
Normal file
21
commands/help.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
exports.conf = {
|
||||
enabled: true,
|
||||
guildOnly: false,
|
||||
aliases: ['commands', 'cmds', 'h'],
|
||||
permLevel: 'User',
|
||||
requiredPerms: ['EMBED_LINKS'],
|
||||
cooldown: 2000
|
||||
}
|
||||
|
||||
exports.help = {
|
||||
name: 'help',
|
||||
category: 'General',
|
||||
description: 'Returns your permission level.',
|
||||
usage: 'help <command>'
|
||||
}
|
||||
|
||||
const Discord = require('discord.js')
|
||||
exports.run = (client, message, args, level, data) => {
|
||||
const embed = new Discord.MessageEmbed()
|
||||
embed.setColor(client.embedColour(message.guild))
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue