32 lines
653 B
JavaScript
32 lines
653 B
JavaScript
|
exports.conf = {
|
||
|
enabled: true,
|
||
|
guildOnly: true,
|
||
|
aliases: [],
|
||
|
permLevel: 'User',
|
||
|
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]',
|
||
|
params: '[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.25;
|
||
|
|
||
|
if(vol <= 1) {
|
||
|
client.music.setVolume(message.guild, vol);
|
||
|
|
||
|
message.reply('set volume to ' + vol * 100 + '%');
|
||
|
};
|
||
|
};
|
||
|
};
|