Ejemplo n.º 1
0
        private static bool ReadLogins()
        {
            string filepath = "Accounts.txt";

            if (File.Exists(filepath) == false)
            {
                CConsole.ErrorLine("Failed to find \"" + filepath + "\"!");
                return(false);
            }
            string[] lines = File.ReadAllLines(filepath);
            foreach (string line in lines)
            {
                if (line.Length == 0 || line.StartsWith("//") == true || line.IndexOf('\t') == -1)
                {
                    continue;
                }

                string[]     parts = line.Split('\t');
                AeriaAccount acc   = new AeriaAccount()
                {
                    Username = parts[0],
                    Password = parts[1]
                };
                CConsole.StatusLine("Add account [{0}]", acc.Username);

                mGame.Accounts.Add(acc);
            }

            return(mGame.Accounts.Count > 0);
        }
Ejemplo n.º 2
0
        public void Run()
        {
            double currentSeconds = 0, lastSeconds = 0;
            Random mRandSleep = new Random();

            while (true)
            {
                lastSeconds    = currentSeconds;
                currentSeconds = new TimeSpan(DateTime.Now.Ticks).TotalSeconds;
                if (lastSeconds == 0)
                {
                    // First run..
                    lastSeconds = currentSeconds;
                }

                int delay = (int)(currentSeconds - lastSeconds);
                for (int i = 0; i < Accounts.Count; i++)
                {
                    AeriaAccount acc = Accounts[i];

                    if (acc.HasPending == false)
                    {
                        // Only try to catch if we are logged in
                        if (acc.EnsureLogin() == false)
                        {
                            CConsole.ErrorLine("[{0}] Removing account due to invalid password", acc.Username);
                            Accounts.RemoveAt(i);
                            i--;
                        }
                        else
                        {
                            // Try to catch it
                            acc.TryCatchItem();
                        }
                    }
                    else
                    {
                        // Sub the delay from our waiting period
                        acc.RefreshWaiting(delay);
                    }
                }

                // Sleep ~30sec, so we dont spam the website with the requests
                System.Threading.Thread.Sleep(mRandSleep.Next(28000, 35000));
            }

            CConsole.InfoLine("Program run out of the loop. Press any key to exit.");
            Console.Read();
        }