woomy/commands/volume.js

32 lines
661 B
JavaScript
Raw Normal View History

2020-04-11 14:45:47 +00:00
exports.conf = {
enabled: true,
guildOnly: true,
aliases: [],
2020-04-12 09:31:52 +00:00
permLevel: 'Moderator',
2020-04-11 14:45:47 +00:00
requiredPerms: ['vol'],
cooldown: 2000
}
exports.help = {
name: 'volume',
category: 'Music',
description: 'Sets volume of currently playing music. (100% = 25% of the actual volume)',
usage: 'volume [volume]',
parameters: '[volume] - Target volume from 0-100%'
2020-04-11 14:45:47 +00:00
}
exports.run = async (client, message, args, level, data) => {
let vol = args[0];
if(vol) {
vol = Number(vol);
2020-04-12 08:39:41 +00:00
vol = vol / 100 * 0.5;
2020-04-11 14:45:47 +00:00
if(vol <= 1) {
client.music.setVolume(message.guild, vol);
message.reply('set volume to ' + vol * 100 + '%');
};
};
};