Ejemplo n.º 1
0
        public void ResetRinger(bool resetAll)
        {
            if (ActiveTime.IsRunning)
            {
                ActiveTime.Stop();
                ActiveTime.Reset();
            }

            if (resetAll && ActiveTimeLong.IsRunning)
            {
                ActiveTimeLong.Stop();
                ActiveTimeLong.Reset();
            }
        }
Ejemplo n.º 2
0
        public void StartRinger()
        {
            if (GRonly && Hud.Game.SpecialArea != SpecialArea.GreaterRift)
            {
                return;
            }
            if (Bossonly && Hud.Game.RiftPercentage < 100)
            {
                return;
            }

            if (!ActiveTime.IsRunning)
            {
                ActiveTime.Start();
            }

            if (!ActiveTimeLong.IsRunning)
            {
                ActiveTimeLong.Start();
            }
        }