Exemple #1
0
 /// <summary>
 ///     Stop the currently Active Bot
 /// </summary>
 public static void StopActiveBot()
 {
     if (ActiveBot != null && ActiveBot.IsRunning())
     {
         ActiveBot.StopBot();
     }
 }