2019-08-02 08:32:00 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'help',
|
|
|
|
description: 'Help command.',
|
|
|
|
cooldown: 5,
|
|
|
|
execute(message, args, client, RichEmbed) {
|
|
|
|
const embed = new RichEmbed()
|
|
|
|
.setTitle('Commands for Musix!')
|
2019-08-02 12:14:45 +00:00
|
|
|
.addField('```-play | -p```', 'Play a song.', true)
|
|
|
|
.addField('```-queue | -q```', 'Display the queue.', true)
|
|
|
|
.addField('```-nowplaying | -np```', 'Display whats currently playing.', true)
|
2019-08-02 08:42:28 +00:00
|
|
|
.addField('```-volume```', 'Change or check the volume.', true)
|
|
|
|
.addField('```-pause```', 'Pause the music.', true)
|
|
|
|
.addField('```-resume```', 'Resume the music.', true)
|
|
|
|
.addField('```-stop```', 'Stop the music, Clear the queue and leave the current voice channel.', true)
|
2019-08-02 12:14:45 +00:00
|
|
|
.addField('```-skip | -s```', 'Skip a song.', true)
|
2019-08-02 08:42:28 +00:00
|
|
|
.addField('```-invite```', 'Invite Musix.', true)
|
|
|
|
.addField('```-ping```', 'See the current ping for Musix', true)
|
2019-08-03 07:47:12 +00:00
|
|
|
.addField('```-info```', 'Display the info', true)
|
2019-08-02 08:42:28 +00:00
|
|
|
.addField('```-help```', 'Display the help.', true)
|
2019-08-02 08:32:00 +00:00
|
|
|
.setAuthor(client.user.username, client.user.displayAvatarURL)
|
2019-08-02 08:42:28 +00:00
|
|
|
.setColor('#b50002')
|
2019-08-02 08:32:00 +00:00
|
|
|
return message.channel.send(embed);
|
|
|
|
}
|
|
|
|
};
|