Example #1
0
 private Task <CommandResult> OnCccc(bool result, CommandContext context)
 {
     if (result)
     {
         context.WriteSuccess("Cool");
         return(context.AskText("What you want to do?", Handler));
     }
     else
     {
         context.WriteText("Blaah");
         return(context.AskText("Why not?", Handler));
     }
 }