PokeBot/commands/help.js
2018-02-23 20:22:56 -05:00

23 lines
544 B
JavaScript

exports.run = (bot, msg, args) => {
const { RichEmbed } = require('discord.js');
msg.channel.send(
new RichEmbed()
.setColor (0x00ae86)
.setTitle('PokeBot Command List')
.setDescription('These are the commands you can use. My prefix is `p:`')
.addField('Core', 'help\nping', true)
.addField('Utility', 'suggest', true)
.setFooter('PokeBot Beta')
);
};
exports.conf = {
aliases: ['h'],
guildOnly: true,
};
exports.help = {
name: 'help',
description: 'Help.',
usage: 'help (command)',
};