mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-10 05:40:24 +00:00
23 lines
934 B
JavaScript
23 lines
934 B
JavaScript
module.exports = {
|
|
name: 'list',
|
|
alias: 'l',
|
|
usage: '',
|
|
description: 'List radio stations.',
|
|
permission: 'none',
|
|
category: 'info',
|
|
execute(msg, args, client, Discord, prefix) {
|
|
let stations = `${client.stations.map(s => `**#** ${s.name}`).join('\n')}`
|
|
const hashs = stations.split('**#**').length;
|
|
for (let i = 0; i < hashs; i++) {
|
|
stations = stations.replace('**#**', `**${i + 1}**`);
|
|
}
|
|
|
|
const embed = new Discord.MessageEmbed()
|
|
.setTitle(client.messages.listTitle)
|
|
.setThumbnail("https://cdn.discordapp.com/emojis/" + client.messageEmojis["list"].replace(/[^0-9]+/g, ''))
|
|
.setColor(client.config.embedColor)
|
|
.setDescription(stations)
|
|
.setFooter('EximiaBots by Warén Media', 'https://cdn.discordapp.com/emojis/687022937978568760.png');
|
|
return msg.channel.send(embed);
|
|
}
|
|
}; |