mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
25 lines
1.0 KiB
JavaScript
25 lines
1.0 KiB
JavaScript
module.exports = {
|
|
name: 'nowplaying',
|
|
alias: 'np',
|
|
usage: '',
|
|
description: 'See the currently playing song position and length.',
|
|
onlyDev: false,
|
|
permission: 'none',
|
|
category: 'music',
|
|
async execute(msg, args, client, Discord, prefix) {
|
|
const radio = client.radio.get(msg.guild.id);
|
|
if (!radio) return msg.channel.send('<:redx:674263474704220182> There is nothing playing.');
|
|
if (!radio.playing) return msg.channel.send('<:redx:674263474704220182> There is nothing playing.');
|
|
radio.time = radio.connection.dispatcher.streamTime;
|
|
let completed = (radio.time.toFixed(0));
|
|
const embed = new Discord.MessageEmbed()
|
|
.setTitle("__Now playing__")
|
|
.setDescription(`<a:aNotes:674602408105476106>**Now playing:** ${radio.url}\n\`${client.funcs.msToTime(completed, "hh:mm:ss")}\``)
|
|
.setURL(radio.songs[0].url)
|
|
.setThumbnail(thumbnail._rejectionHandler0)
|
|
.setColor(client.config.embedColor)
|
|
return msg.channel.send(embed);
|
|
}
|
|
};
|
|
|