blob: b0fc3952a0725992156908664a55e45bd8b974c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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: [],
guildOnly: true,
};
exports.help = {
name: 'help',
description: 'Help.',
usage: 'help (command)',
};
|