woomy/commands/volume.js
2020-04-13 14:28:53 +10:00

33 lines
656 B
JavaScript

exports.conf = {
enabled: true,
guildOnly: true,
aliases: ['vol'],
permLevel: 'Moderator',
requiredPerms: [],
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%'
}
exports.run = async (client, message, args, level, data) => {
let vol = args[0]
if (vol) {
vol = Number(vol)
vol = vol / 100 * 0.5
if (vol <= 1) {
client.music.setVolume(message.guild, vol)
message.reply('set volume to ' + vol * 100 + '%')
}
}
}