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, prefix, command) {
|
|
|
|
const radio = client.radio.get(msg.guild.id);
|
2020-03-12 00:50:05 +00:00
|
|
|
if (!args[1] && radio) return msg.channel.send(`current volume: **${radio.volume}**`);
|
2020-03-02 19:38:42 +00:00
|
|
|
const volume = parseFloat(args[1]);
|
|
|
|
if (client.funcs.check(client, msg, command)) {
|
2020-03-12 00:50:05 +00:00
|
|
|
if (isNaN(volume)) return msg.channel.send('you need to enter a valid __number__.');
|
|
|
|
if (volume > 100) return msg.channel.send('The max volume is `100`!');
|
|
|
|
if (volume < 0) return msg.channel.send('The volume needs to be a positive number!');
|
2020-03-02 19:38:42 +00:00
|
|
|
radio.volume = volume;
|
|
|
|
radio.connection.dispatcher.setVolume(volume / 5);
|
2020-03-12 00:50:05 +00:00
|
|
|
return msg.channel.send(`volume is now: **${volume}**`);
|
2020-03-02 19:38:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|