2017-07-25 12 views
-1

私は不和のテキストチャンネルからメッセージを受け取る必要があるこの行を持っています。違反からのコマンドでメッセージを受け取る

choice = video[int.Parse(CommandHandler.message .Content)-1].Url; 

私はAPIを検索するなど多くのことを試みましたが、手がかりはありません。

はここでコマンド

[Command("join", RunMode= RunMode.Async), Summary("joins voice channel")] 
public async Task joinvoice([Remainder, Summary("The text to echo")] string searchP="") 
{ 

    IVoiceChannel voicechannel = (CommandHandler.Last as IGuildUser).VoiceChannel; 

    if (voicechannel == null) 
    { 
     await ReplyAsync("u have to be in a channel first"); 
     return; 

    } 
    string choice = ""; 
    VideoSearch SearchRisolts = new VideoSearch(); 
    if (searchP != "") 
    { 
     if (searchP.Contains("https://")) 
      choice = searchP; 
     else 
     { 
      List<VideoInformation> video = SearchRisolts.SearchQuery(searchP, 1); 
      await ReplyAsync("1) " + video[0].Title + "\n\n2) " + video[1].Title + "\n\n3) " + video[2].Title); 

      choice = video[int.Parse(CommandHandler.message .Content)-1].Url;//here i need to recive a message from the chat 
     } 
    } 

    if (voicechannel != Program.voicechannel) 
    { 
     Program.audioClient = await voicechannel.ConnectAsync(); 
     Program.voicechannel = voicechannel; 

    } 
    if (Program.audioClient!=null) 
     await SendAsync(Program.audioClient, choice); 

} 

答えて

0

BaseModule<ICommandContext>

このBaseModuleから派生する必要があり、この関数を含むクラスである場所にあなたが探しているメッセージが含まれているコンテキストが含まれています。

Context.Message.Content 
関連する問題