Added new commands and messages

Add a np command and made the messages like nicer
This commit is contained in:
ZR2 2016-01-24 02:00:23 +10:30
parent a39edb1001
commit a34ba123f8

View File

@ -137,7 +137,16 @@ namespace NadekoBot.Modules {
await e.Send(":musical_note: " + player.SongQueue.Count + " videos currently queued."); await e.Send(":musical_note: " + player.SongQueue.Count + " videos currently queued.");
await e.Send(string.Join("\n", player.SongQueue.Select(v => v.Title).Take(10))); await e.Send(string.Join("\n", player.SongQueue.Select(v => v.Title).Take(10)));
}); });
cgb.CreateCommand("np")
.Alias("playing")
.Description("Shows the song currently playing.")
.Do(e => {
if (musicPlayers.ContainsKey(e.Server) == false) return;
var player = musicPlayers[e.Server];
e.Send($"Now Playing **{player.CurrentSong.Title}**");
});
cgb.CreateCommand("clrbfr") cgb.CreateCommand("clrbfr")
.Alias("clearbuffers") .Alias("clearbuffers")
.Description("Clears the music buffer across all servers. **Owner only.**") .Description("Clears the music buffer across all servers. **Owner only.**")
@ -233,10 +242,11 @@ namespace NadekoBot.Modules {
StartBuffering(); StartBuffering();
LinkResolved = true; LinkResolved = true;
Channel.Send(":musical_note: **Queued** " + video.Title); Channel.Send($"{User.Mention}, Queued **{video.Title}**");
} catch (Exception e) { } catch (Exception e) {
// Send a message to the guy that queued that // Send a message to the guy that queued that
Channel.SendMessage(":warning: Something went wrong..."); Channel.SendMessage("This video is unavailable in the country the Bot is running in, or you enter an invalid name or url.");
Console.WriteLine("Cannot parse youtube url: " + query); Console.WriteLine("Cannot parse youtube url: " + query);
Cancel(); Cancel();
} }
@ -598,7 +608,7 @@ namespace NadekoBot.Modules {
return; return;
// Start streaming to voice // Start streaming to voice
await streamRequest.Channel.SendMessage($":musical_note: Playing {streamRequest.Title}"); await streamRequest.Channel.SendMessage($"Playing **{streamRequest.Title}** [{streamRequest.Length}]");
var audioService = client.Audio(); var audioService = client.Audio();
voiceClient = await audioService.Join(streamRequest.VoiceChannel); voiceClient = await audioService.Join(streamRequest.VoiceChannel);
@ -638,6 +648,7 @@ namespace NadekoBot.Modules {
Console.WriteLine("Exception while playing music: " + ex); Console.WriteLine("Exception while playing music: " + ex);
} finally { } finally {
if (voiceClient != null) { if (voiceClient != null) {
await streamRequest.Channel.SendMessage($"Finished playing **{streamRequest.Title}**");
State = StreamTaskState.Completed; State = StreamTaskState.Completed;
streamer?.Cancel(); streamer?.Cancel();
await voiceClient.Disconnect(); await voiceClient.Disconnect();