/castsequence not resetting

#1 - Dec. 18, 2012, 10:31 p.m.
Blizzard Post
I have a very simple macro:

#showtooltip
/castsequence Nature's Swiftness, Healing Touch

Usually it works, however sometimes I notice that after I use it, it gets stuck on Healing Touch, even though the instant cast from Nature's Swiftness already happened. I also noticed that actually casting the 2nd Healing Touch does reset the macro when this happens, but then it's already too late.

Since it's my emergency button, it's used in situations when I can't stay calm and would just smash the button as fast as possible, however it's very inconvenient to be shifting out of Bear Form and starting to cast a Healing Touch while tanking, especially if there just was the need to press a panic button.

Hence the question: Is it possible to force the macro to reset after I cast the 1st Healing Touch, so that I won't get shifted out of Bear Form if I just smash the button?
Forum Avatar
Community
#6 - Dec. 19, 2012, 3:13 p.m.
Blizzard Post
Update:

It's not working, this one always shifts me out of Bear Form.


Can you try it with the autoUnshift function added?:


#showtooltip
/run SetCVar("autoUnshift",0)
/cast Nature's Swiftness
/cast Healing Touch
/run SetCVar("autoUnshift",1)

Hope it works !