summaryrefslogtreecommitdiff
path: root/src/commands/voice/volume.js
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-16 04:56:37 -0700
committer8cy <[email protected]>2020-04-16 04:56:37 -0700
commit8c435855e647ee7aef8578e253caf91fe44c67cc (patch)
treeae0bb59de10ecec5ca2fc01dfa9190efd1f177ab /src/commands/voice/volume.js
parentno longer hosting ws, v6.0.4 (diff)
downloaddep-core-8c435855e647ee7aef8578e253caf91fe44c67cc.tar.xz
dep-core-8c435855e647ee7aef8578e253caf91fe44c67cc.zip
The Purification, v7.0.0
add: - aesthetic, oddcase, stretch, surreal - culturedtext - dogeify - howify - insult - lorem - spongebob Other Stuff: - many refactoring
Diffstat (limited to 'src/commands/voice/volume.js')
-rw-r--r--src/commands/voice/volume.js45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/commands/voice/volume.js b/src/commands/voice/volume.js
deleted file mode 100644
index 96a6de3..0000000
--- a/src/commands/voice/volume.js
+++ /dev/null
@@ -1,45 +0,0 @@
-const { Command } = require('discord.js-commando');
-const emoji = require('emoji-random');
-
-module.exports = class VolumeVoice extends Command {
- constructor(client) {
- super(client, {
- name: 'volume',
- aliases: ['vol'],
- group: 'voice',
- memberName: 'volume',
- description: 'Changes volume of any currentaly playing audio.',
- guildOnly: true,
- args: [
- {
- key: 'wantedVol',
- prompt: 'What would volume you like? (1 to 200)',
- type: 'integer',
- validate: wantedVol => wantedVol >= 1 && wantedVol <= 200
- }
- ],
- examples: [
- 'uwu!volume 20',
- 'uwu!vol 50'
- ],
- clientPermissions: ['SPEAK', 'CONNECT', 'SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- });
- }
- run(msg, { wantedVol }) {
- var voiceChannel = msg.member.voice.channel;
- if (!voiceChannel) return msg.reply('Please join a channel and try again. ' + emoji.random());
-
- if (
- typeof msg.guild.musicData.songDispatcher == 'undefined' ||
- msg.guild.musicData.songDispatcher == null
- ) {
- return msg.reply('There isn\'t any audio playing right now. ' + emoji.random());
- }
-
- const volume = wantedVol / 100;
- msg.guild.musicData.volume = volume;
- msg.guild.musicData.songDispatcher.setVolume(volume);
- msg.reply(`Volume is now: **${wantedVol}%**. ` + emoji.random());
- }
-}; \ No newline at end of file