eximiabots-radiox/commands/volume.js

27 lines
982 B
JavaScript
Raw Normal View History

2020-03-02 19:38:42 +00:00
module.exports = {
name: 'volume',
description: 'Volume command.',
alias: 'none',
usage: '<volume>',
permission: 'MANAGE_MESSAGES',
category: 'music',
execute(msg, args, client, Discord, command) {
let message = {};
2020-03-02 19:38:42 +00:00
const radio = client.radio.get(msg.guild.id);
if (!args[1] && radio) {
message.currentVolume = client.messages.currentVolume.replace("%radio.volume%", radio.volume)
return msg.channel.send(message.currentVolume);
}
2020-03-02 19:38:42 +00:00
const volume = parseFloat(args[1]);
if (client.funcs.check(client, msg, command)) {
2020-03-12 22:53:23 +00:00
if (isNaN(volume)) return msg.channel.send(client.messages.invalidVolume);
if (volume > 100) return msg.channel.send(client.messages.maxVolume);
if (volume < 0) return msg.channel.send(client.messages.negativeVolume);
2020-03-02 19:38:42 +00:00
radio.volume = volume;
radio.connection.dispatcher.setVolume(volume / 5);
message.newVolume = client.messages.newVolume.replace("%volume%", volume);
2020-03-12 22:53:23 +00:00
return msg.channel.send(message.newVolume);
2020-03-02 19:38:42 +00:00
}
}
};