Looking for some feedback, trying to setup Warrior tanking build and having an issue with Power Link. I'm doing a check to determine if I have the buff, and if not and if KE is over 350, we're going to apply it... unfortunately it's being spammed on every global. It is an amp, am I handling amp buffs wrong - do they exist in some other space, I couldn't find one?
Code:
if (SpellController.CanCast("Power Link") && Me.InnateResource >= 350 && !Me.HasBuff("Power Link"))
return "Power Link";
Help would be appreciated.
Thanks.