1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 01:21:56 +00:00
musix-oss/commands/help.js

29 lines
1.6 KiB
JavaScript
Raw Normal View History

2019-08-02 08:32:00 +00:00
module.exports = {
name: 'help',
description: 'Help command.',
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!')
.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)
.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)
.addField(`${prefix}remove | ${prefix}rm`, 'Remove songs from the queue.', true)
.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)
.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)
.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);
}
};