Esempio n. 1
0
 static void Randomizator()
 {
     while (true)
     {
         if (ChatIDs.Count != 0)
         {
             var randomChat = ChatIDs[Random.Next(0, ChatIDs.Count)];
             if (Random.Next(1, 200) == 74)
             {
                 BotLogic.RandomAction(randomChat);
             }
             Thread.Sleep(10000);
         }
     }
 }