1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-06-16 06:16:00 +00:00

updated all commands and removed some weird files

This commit is contained in:
MatteZ02
2019-08-14 15:26:33 +03:00
parent 29b40867a3
commit 9d7e55b5ee
1058 changed files with 170671 additions and 70 deletions

View File

@ -2,21 +2,22 @@ module.exports = {
name: 'help',
description: 'Help command.',
cooldown: 5,
execute(message, args, client, RichEmbed) {
execute(message, args, client, RichEmbed, prefix) {
const embed = new RichEmbed()
.setTitle('Commands for Musix!')
.addField('```-play | -p```', 'Play a song.', true)
.addField('```-queue | -q```', 'Display the queue.', true)
.addField('```-nowplaying | -np```', 'Display whats currently playing.', true)
.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)
.addField('```-skip | -s```', 'Skip a song.', true)
.addField('```-invite```', 'Invite Musix.', true)
.addField('```-ping```', 'See the current ping for Musix', true)
.addField('```-info```', 'Display the info', true)
.addField('```-help```', 'Display the help.', true)
.addField(`${prefix}play | ${prefix}p`, 'Play a song.', true)
.addField(`${prefix}queue | ${prefix}q`, 'Display the queue.', true)
.addField(`${prefix}nowplaying | ${prefix}np`, 'Display whats currently playing.', true)
.addField(`${prefix}volume`, 'Change or check the volume.', true)
.addField(`${prefix}pause`, 'Pause the music.', true)
.addField(`${prefix}resume`, 'Resume the music.', true)
.addField(`${prefix}stop`, 'Stop the music, Clear the queue and leave the current voice channel.', true)
.addField(`${prefix}skip | ${prefix}s`, 'Skip a song.', true)
.addField(`${prefix}invite`, 'Invite Musix.', true)
.addField(`${prefix}ping`, 'See the current ping 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)
.setAuthor(client.user.username, client.user.displayAvatarURL)
.setColor('#b50002')
return message.channel.send(embed);