2021-09-05 00:17:21 +00:00
|
|
|
import Discord from "discord.js";
|
|
|
|
|
2020-03-02 19:38:42 +00:00
|
|
|
module.exports = {
|
2021-08-26 15:14:15 +00:00
|
|
|
name: 'stop',
|
|
|
|
description: 'Stop radio',
|
|
|
|
category: 'radio',
|
2021-09-05 00:37:03 +00:00
|
|
|
async execute(interaction, client, command) {
|
2021-08-26 15:14:15 +00:00
|
|
|
if (client.funcs.check(client, interaction, command)) {
|
2021-09-09 15:52:25 +00:00
|
|
|
const radio = client.radio.get(interaction.guild.id);
|
2021-08-18 22:52:16 +00:00
|
|
|
client.funcs.statisticsUpdate(client, interaction.guild, radio);
|
2021-08-26 15:14:15 +00:00
|
|
|
radio.connection?.destroy();
|
2021-09-11 14:15:27 +00:00
|
|
|
client.funcs.logger('Radio', interaction.guild.id + " / " + 'Stop');
|
2021-08-27 01:59:23 +00:00
|
|
|
|
|
|
|
const embed = new Discord.MessageEmbed()
|
|
|
|
.setTitle(client.user.username)
|
|
|
|
.setThumbnail("https://cdn.discordapp.com/emojis/" + client.messageEmojis["stop"].replace(/[^0-9]+/g, ''))
|
|
|
|
.setColor(client.config.embedColor)
|
2021-08-31 07:38:21 +00:00
|
|
|
.addField(client.messages.nowplayingTitle, "-", true)
|
2021-09-03 00:46:44 +00:00
|
|
|
.setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png')
|
2021-08-27 01:59:23 +00:00
|
|
|
.setFooter(client.messages.footerText, "https://cdn.discordapp.com/emojis/" + client.messageEmojis["eximiabots"].replace(/[^0-9]+/g, ''));
|
2021-08-31 07:38:21 +00:00
|
|
|
|
2021-08-27 01:59:23 +00:00
|
|
|
if(!radio.message){
|
2021-09-02 11:40:55 +00:00
|
|
|
radio.message = radio.textChannel.send({ embeds: [embed], components: [] });
|
2021-08-27 01:59:23 +00:00
|
|
|
} else {
|
2021-08-31 07:38:21 +00:00
|
|
|
radio.message.edit({ embeds: [embed], components: [] });
|
2021-08-27 01:59:23 +00:00
|
|
|
}
|
|
|
|
|
2021-09-02 11:40:55 +00:00
|
|
|
setTimeout(async function() {
|
|
|
|
await radio.message?.delete();
|
2021-08-27 01:59:23 +00:00
|
|
|
}, 5000);
|
|
|
|
|
2021-08-26 15:14:15 +00:00
|
|
|
client.radio.delete(interaction.guild.id);
|
2021-08-27 01:59:23 +00:00
|
|
|
|
|
|
|
interaction.reply({
|
|
|
|
content: client.messageEmojis["stop"] + client.messages.stop,
|
|
|
|
ephemeral: true
|
|
|
|
});
|
2021-08-26 15:14:15 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-09 09:44:50 +00:00
|
|
|
};
|