Venus112
New Member
- Joined
- Jun 17, 2010
- Messages
- 1,509
- Reaction score
- 13
Looking into Zealotry, and i'd want to use it before my CC does Inquisition
Tried using !SpellManager.CanCast("Zealotry"), but it will return true all the time due to it being grayed out. Would like a kind of SpellManager function that checks it as a cooldown, not that i dont have 3 holy power for it.
Any ideas for this?
That's what is being used now for Inquisition, but as it is now - it'll fire inquisition of first, instead of using Zealotry and then use a Zealotry stack for Inquisition.
Tried using !SpellManager.CanCast("Zealotry"), but it will return true all the time due to it being grayed out. Would like a kind of SpellManager function that checks it as a cooldown, not that i dont have 3 holy power for it.
Any ideas for this?
Code:
if (Me.Auras.ContainsKey("Divine Purpose") && !Me.Auras.ContainsKey("Inquisition") || Me.Auras.ContainsKey("Zealotry") && !Me.Auras.ContainsKey("Inquisition") || Me.CurrentHolyPower >= 2 && !Me.Auras.ContainsKey("Inquisition"))
That's what is being used now for Inquisition, but as it is now - it'll fire inquisition of first, instead of using Zealotry and then use a Zealotry stack for Inquisition.






