2019-08-02 08:32:00 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'help',
|
|
|
|
description: 'Help command.',
|
2019-10-31 18:29:26 +00:00
|
|
|
alias: 'help',
|
2019-08-02 08:32:00 +00:00
|
|
|
cooldown: 5,
|
2019-10-10 13:43:04 +00:00
|
|
|
execute(message, args, client, Discord, prefix) {
|
|
|
|
const embed = new Discord.RichEmbed()
|
2019-08-02 08:32:00 +00:00
|
|
|
.setTitle('Commands for Musix!')
|
2019-08-14 12:26:33 +00:00
|
|
|
.addField(`${prefix}play | ${prefix}p`, 'Play a song.', true)
|
2019-09-15 06:18:33 +00:00
|
|
|
.addField(`${prefix}skip | ${prefix}s`, 'Skip a song.', true)
|
2019-08-14 12:26:33 +00:00
|
|
|
.addField(`${prefix}queue | ${prefix}q`, 'Display the queue.', true)
|
2019-10-10 13:43:04 +00:00
|
|
|
.addField(`${prefix}nowplaying | ${prefix}np`, 'Display what\'s currently playing.', true)
|
2019-10-24 17:11:08 +00:00
|
|
|
.addField(`${prefix}remove | ${prefix}rm`, 'Remove songs from the queue.', true)
|
2019-08-14 12:26:33 +00:00
|
|
|
.addField(`${prefix}volume`, 'Change or check the volume.', true)
|
|
|
|
.addField(`${prefix}pause`, 'Pause the music.', true)
|
|
|
|
.addField(`${prefix}resume`, 'Resume the music.', true)
|
2019-10-10 13:43:04 +00:00
|
|
|
.addField(`${prefix}loop`, 'Loop the queue.', true)
|
2019-08-14 12:26:33 +00:00
|
|
|
.addField(`${prefix}stop`, 'Stop the music, Clear the queue and leave the current voice channel.', true)
|
|
|
|
.addField(`${prefix}invite`, 'Invite Musix.', true)
|
2019-09-15 06:18:33 +00:00
|
|
|
.addField(`${prefix}status`, 'See different information for Musix.', true)
|
2019-08-14 12:26:33 +00:00
|
|
|
.addField(`${prefix}bug`, 'Report a bug.', true)
|
|
|
|
.addField(`${prefix}settings`, 'Change the guild specific settings.', true)
|
|
|
|
.addField(`${prefix}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);
|
|
|
|
}
|
|
|
|
};
|