Ejemplo n.º 1
0
        private void StartAutoTrain()
        {
            AccountModel iAccount = Account;

            try
            {
                if (iAccount.IsAuto && iAccount.IsAutoTrain)
                {
                    iAccount.Func.ONTrain = true;

                    GameControl.AutoTrainIndex(iAccount, LoginM);
                }
                else
                {
                    iAccount.Func.ONTrain = false;
                }
            }
            catch { iAccount.IsAutoTrain = false; }
        }