if(!queue||!queue.playing)returnmessage.channel.send(`No music currently playing ${message.author}... try again ? ❌`);
constvol=parseInt(args[0]);
if(!vol)returnmessage.channel.send(`The current volume is ${queue.volume} 🔊\n*To change the volume enter a valid number between **1** and **${maxVol}**.*`);
if(queue.volume===vol)returnmessage.channel.send(`The volume you want to change is already the current one ${message.author}... try again ? ❌`);
if(vol==="666")returnmessage.channel.send('Welcome to the Hell ... but no ...');
if(vol<0||vol>maxVol)returnmessage.channel.send(`The specified number is not valid. Enter a number between **1** and **${maxVol}** ${message.author}... try again ? ❌`);
returnmessage.channel.send(success?`The volume has been modified to **${vol}**/**${maxVol}**% 🔊`:`Something went wrong ${message.author}... try again ? ❌`);