From f6edadbfcadbc9e38e22500a496a74dd49d96d8a Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Fri, 1 Jun 2018 11:25:03 +0100 Subject: added Permissions Class for easy Permission required commands --- DiscoBot/Audio/Soundeffects.cs | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) (limited to 'DiscoBot/Audio/Soundeffects.cs') diff --git a/DiscoBot/Audio/Soundeffects.cs b/DiscoBot/Audio/Soundeffects.cs index 485be28..9982947 100644 --- a/DiscoBot/Audio/Soundeffects.cs +++ b/DiscoBot/Audio/Soundeffects.cs @@ -10,19 +10,23 @@ Bell, Ding, Nooo, - Monterkill, + Monsterkill, Finish, Wrong, Magic, - Stupid + Stupid, + Police, + Roblox } public static class SoundEffects { + public static int Volume { get; set; } = 50; + public static async Task Play(Sound s) { string url = string.Empty; - int vol = 256; + int volume = 256; switch (s) { case Sound.Bell: @@ -35,26 +39,35 @@ case Sound.Magic: url = "https://www.myinstants.com/media/sounds/dream-harp-sound-effect.mp3"; break; - case Sound.Monterkill: + case Sound.Monsterkill: url = "https://www.myinstants.com/media/sounds/announcer_kill_monster_01.mp3"; break; case Sound.Nooo: url = "https://www.myinstants.com/media/sounds/nooo.swf.mp3"; break; + case Sound.Roblox: + url = "https://www.myinstants.com/media/sounds/roblox-death-sound_ytkBL7X.mp3"; + break; case Sound.Stupid: url = "https://www.myinstants.com/media/sounds/stupid_dum_03.mp3"; - vol = 10; + volume = 10; + break; + case Sound.Police: + url = "https://www.myinstants.com/media/sounds/sound-of-the-police.mp3"; break; case Sound.Wrong: url = "https://www.myinstants.com/media/sounds/wrong-answer-sound-effect.mp3"; - vol = 50; - break; + volume = 50; + break; } + volume = (int)(volume * (Volume / 100.0)); + + if (url != string.Empty) { // await Dsa.Service.SendAudioAsync(url, vol); - await Voice.SendAsync(url, vol); + await Voice.SendAsync(url, volume); return; } -- cgit v1.2.3-70-g09d2