What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Not casting Frost Nova for Firebird Archon profile

xeroz

New Member
Joined
Oct 2, 2015
Messages
10
Reaction score
0
hey guys i noticed the firebird archon profile does not cast frost nova at all. is there a way i can fix the profile to make it do so? would like have bot using it.
 
Last edited:
It looks like it should be casting. Do you have HaloOfArlyse with IceArmor maybe?

Routines\Wizard\WizardBase.cs

Code:
        protected virtual bool ShouldFrostNova()
        {
            if (!Skills.Wizard.FrostNova.CanCast())
                return false;


            if (Legendary.HaloOfArlyse.IsEquipped && Skills.Wizard.IceArmor.IsActive)
                return false;


            if (Player.CurrentHealthPct > 0.8)
                return false;


            if (!TargetUtil.AnyMobsInRange(25f))
                return false;


            return true;
        }
 
Back
Top