mirror of
				https://github.com/musix-org/musix-oss
				synced 2025-11-04 06:49:31 +00:00 
			
		
		
		
	Musix theme update
This commit is contained in:
		@@ -5,20 +5,20 @@ module.exports = {
 | 
				
			|||||||
    execute(message, args, client, RichEmbed) {
 | 
					    execute(message, args, client, RichEmbed) {
 | 
				
			||||||
        const embed = new RichEmbed()
 | 
					        const embed = new RichEmbed()
 | 
				
			||||||
            .setTitle('Commands for Musix!')
 | 
					            .setTitle('Commands for Musix!')
 | 
				
			||||||
            .addField('```+play```', 'Play a song.', true)
 | 
					            .addField('```-play```', 'Play a song.', true)
 | 
				
			||||||
            .addField('```+queue```', 'Display the queue.', true)
 | 
					            .addField('```-queue```', 'Display the queue.', true)
 | 
				
			||||||
            .addField('```+np```', 'Display whats currently playing.', true)
 | 
					            .addField('```-np```', 'Display whats currently playing.', true)
 | 
				
			||||||
            .addField('```+volume```', 'Change or check the volume.', true)
 | 
					            .addField('```-volume```', 'Change or check the volume.', true)
 | 
				
			||||||
            .addField('```+pause```', 'Pause the music.', true)
 | 
					            .addField('```-pause```', 'Pause the music.', true)
 | 
				
			||||||
            .addField('```+resume```', 'Resume 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('```-stop```', 'Stop the music, Clear the queue and leave the current voice channel.', true)
 | 
				
			||||||
            .addField('```+skip```', 'Skip a song.', true)
 | 
					            .addField('```-skip```', 'Skip a song.', true)
 | 
				
			||||||
            .addField('```+invite```', 'Invite Musix.', true)
 | 
					            .addField('```-invite```', 'Invite Musix.', true)
 | 
				
			||||||
            .addField('```+ping```', 'See the current ping for Musix', true)
 | 
					            .addField('```-ping```', 'See the current ping for Musix', true)
 | 
				
			||||||
            .addField('```+info```', 'Display info and instructions.', true)
 | 
					            .addField('```-info```', 'Display info and instructions.', true)
 | 
				
			||||||
            .addField('```+help```', 'Display the help.', true)
 | 
					            .addField('```-help```', 'Display the help.', true)
 | 
				
			||||||
            .setAuthor(client.user.username, client.user.displayAvatarURL)
 | 
					            .setAuthor(client.user.username, client.user.displayAvatarURL)
 | 
				
			||||||
            .setColor('#2780cd')
 | 
					            .setColor('#b50002')
 | 
				
			||||||
        return message.channel.send(embed);
 | 
					        return message.channel.send(embed);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -10,7 +10,7 @@ module.exports = {
 | 
				
			|||||||
            .addField('Current Ping in milliseconds', `${Math.floor(client.ping * 10) / 10} ms`, true)
 | 
					            .addField('Current Ping in milliseconds', `${Math.floor(client.ping * 10) / 10} ms`, true)
 | 
				
			||||||
            .addField('Be careful with the Volume command! Volume is not recommended to be put over 3 with user volume at 100%!', 'Volume will reset to 1 always when a new song begins!', true)
 | 
					            .addField('Be careful with the Volume command! Volume is not recommended to be put over 3 with user volume at 100%!', 'Volume will reset to 1 always when a new song begins!', true)
 | 
				
			||||||
            .setAuthor(client.user.username, client.user.displayAvatarURL)
 | 
					            .setAuthor(client.user.username, client.user.displayAvatarURL)
 | 
				
			||||||
            .setColor('#2780cd')
 | 
					            .setColor('#b50002')
 | 
				
			||||||
        return message.channel.send(embed);
 | 
					        return message.channel.send(embed);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
@@ -39,7 +39,7 @@ module.exports = {
 | 
				
			|||||||
						.setTitle("__Song Selection__")
 | 
											.setTitle("__Song Selection__")
 | 
				
			||||||
						.setDescription(`${videos.map(video2 => `**${++index}** \`${video2.title}\` `).join('\n')}`)
 | 
											.setDescription(`${videos.map(video2 => `**${++index}** \`${video2.title}\` `).join('\n')}`)
 | 
				
			||||||
						.setFooter("Please provide a number ranging from __1-10__ to select one of the search results.")
 | 
											.setFooter("Please provide a number ranging from __1-10__ to select one of the search results.")
 | 
				
			||||||
						.setColor("#2780cd")
 | 
											.setColor("#b50002")
 | 
				
			||||||
					message.channel.send(embed);
 | 
										message.channel.send(embed);
 | 
				
			||||||
					try {
 | 
										try {
 | 
				
			||||||
						var response = await message.channel.awaitMessages(message2 => message2.content > 0 && message2.content < 11, {
 | 
											var response = await message.channel.awaitMessages(message2 => message2.content > 0 && message2.content < 11, {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -24,7 +24,7 @@ module.exports = {
 | 
				
			|||||||
			.setTitle("__Song queue__")
 | 
								.setTitle("__Song queue__")
 | 
				
			||||||
			.setDescription(queuemessage)
 | 
								.setDescription(queuemessage)
 | 
				
			||||||
			.setFooter(`🎶 **Now playing:** ${serverQueue.songs[0].title}`)
 | 
								.setFooter(`🎶 **Now playing:** ${serverQueue.songs[0].title}`)
 | 
				
			||||||
			.setColor("#2780cd")
 | 
								.setColor("#b50002")
 | 
				
			||||||
		return message.channel.send(embed);
 | 
							return message.channel.send(embed);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user