public void UniversalErrorDefense()
        {
            FastCheck fc = new FastCheck();

            /*
             * if (fc.FaultNox())
             * {
             *  RestartBot();
             * }*/
            if (fc.ServerError())
            {
                Thread.Sleep(5000);
                if (fc.ServerError())
                {
                    RestartBot();
                }
            }
        }