const { MessageEmbed } = require('discord.js'); module.exports = { name: 'queue', aliases: ['q'], utilisation: '{prefix}queue', voiceChannel: true, async execute (client, message) { const queue = player.getQueue(message.guild.id); if (!queue) return message.channel.send(`No music currently playing ${message.author}... try again ? ❌`); if (!queue.tracks[0]) return message.channel.send(`No music in the queue after the current one ${message.author}... try again ? ❌`); const embed = new MessageEmbed(); const methods = ['', '🔁', '🔂']; embed.setColor('RED'); embed.setThumbnail(message.guild.iconURL({ dynamic: true })); embed.setAuthor(`Server queue - ${message.guild.name} ${methods[queue.repeatMode]}`, client.user.displayAvatarURL({ dynamic: true })); const tracks = queue.tracks.map((track, i) => `**${i + 1}** - ${track.title} | ${track.author} (requested by : ${track.requestedBy.username})`); const songs = queue.tracks.length; const nextSongs = songs > 5 ? `And **${songs - 5}** other song(s)...` : `In the playlist **${songs}** song(s)...`; embed.setDescription(`Current ${queue.current.title}\n\n${tracks.slice(0, 5).join('\n')}\n\n${nextSongs}`); embed.setTimestamp(); message.channel.send({ embeds: [embed] }); } };