Exemplo n.º 1
0
 public override void OnStart()
 {
     if (Level == 0) Level = -1;
     _stopwatch.Start();
     //AdvDia.Update(true);
     _riftCoroutine = new RiftCoroutine(RiftType.Nephalem);
 }
Exemplo n.º 2
0
        public override void OnStart()
        {
            if (Level == 0) Level = -1;
            _stopwatch.Start();

            var riftOptions = new RiftCoroutine.RiftOptions
            {
                RiftCount = RiftCount > 0 ? RiftCount : PluginSettings.Current.RiftCount,
                IsEmpowered = IsEmpowered || PluginSettings.Current.UseEmpoweredRifts
            };

            _riftCoroutine = new RiftCoroutine(RiftType.Nephalem, riftOptions);
        }
Exemplo n.º 3
0
        public override void OnStart()
        {

            if (!Adventurer.Enabled)
            {
                Logger.Error("Plugin is not enabled. Please enable Adventurer and try again.");
                _isDone = true;
                return;
            }

            PluginEvents.CurrentProfileType = ProfileType.Rift;

            _stopwatch.Start();
            //AdvDia.Update(true);
            _riftCoroutine = new RiftCoroutine(RiftType.Nephalem);
        }
Exemplo n.º 4
0
        public override void OnStart()
        {
            if (!Adventurer.Enabled)
            {
                Logger.Error("Plugin is not enabled. Please enable Adventurer and try again.");
                _isDone = true;
                return;
            }

            var riftOptions = new RiftCoroutine.RiftOptions
            {
                RiftCount = RiftCount > 0 ? RiftCount : PluginSettings.Current.RiftCount,
            };

            PluginEvents.CurrentProfileType = ProfileType.Rift;

            _stopwatch.Start();
            //AdvDia.Update(true);
            _riftCoroutine = new RiftCoroutine(RiftType.Nephalem, riftOptions);
        }
Exemplo n.º 5
0
        public override void OnStart()
        {
            if (!Adventurer.Enabled)
            {
                Logger.Error("Plugin is not enabled. Please enable Adventurer and try again.");
                _isDone = true;
                return;
            }

            var riftOptions = new RiftCoroutine.RiftOptions
            {
                RiftCount = RiftCount > 0 ? RiftCount : PluginSettings.Current.RiftCount,
                IsEmpowered = IsEmpowered || PluginSettings.Current.UseEmpoweredRifts
            };

            PluginEvents.CurrentProfileType = ProfileType.Rift;

            _stopwatch.Start();

            _riftCoroutine = new RiftCoroutine(RiftType.Greater, riftOptions);
        }
Exemplo n.º 6
0
 public override void ResetCachedDone(bool force = false)
 {
     _isDone = false;
     _riftCoroutine = null;
 }