R
Rinus4
Guest
I've managed to get Aspect-switching, on hunter, working, but somehow it won't cast Cobra Shot while moving, so far I've made this command:
But it's not using this command at all and I'm out of other options. I'm hoping someone can show his knowledge/experience and teach my why it isn't working
btw this is the normal working, while standing, rotation:
Kind regards,
Rinus4
Code:
// ***Aspect of the Fox Shot***
SC.CastSpell("Cobra Shot", a => Me.IsMoving && !Me.Auras.ContainsKey("Trap Launcher") && !SC.PlayerHasBuff("Feign Death"), "Cobra Fox"),
But it's not using this command at all and I'm out of other options. I'm hoping someone can show his knowledge/experience and teach my why it isn't working

btw this is the normal working, while standing, rotation:
Code:
SC.CastSpell("Arcane Shot", a => Me.FocusPercent > 32 && !Me.Auras.ContainsKey("Trap Launcher") && !SC.PlayerHasBuff("Feign Death"), "Arcane Shot"),
SC.CastSpell("Cobra Shot", a => !Me.Auras.ContainsKey("Trap Launcher") && !SC.PlayerHasBuff("Feign Death"), "Cobra Shot for focus"),
Kind regards,
Rinus4