I made a simple macro that will cast Concentrated Flame at your target, but if you hold down Shift it will heal yourself.
#showtooltip
/cast [mod:shift,@player] [] Concentrated Flame; Concentrated Flame
Now, some of you might question why I don’t just set my “Self Cast Key” to Shift in the interface.
I don’t have a “Self Cast Key” set to anything because I use all three modifiers (Shift, Ctrl, Alt) for other macros/abilities. So this macro has its use for those who float in the same boat.
1 Like
Or use one that work with all major abilities
Heart of Azeroth Essence Macro
Alt: Self Cast
Mouseover: Cast on Mouseover
Reticle: Cast at Cursor (while in combat)
Default casting behavior. This condition also serves to generate the correct tooltip.
#showtooltip
/cast [mod:alt,@player] [@mouseover,exists,nodead] [@cursor,combat] [] Heart Essence
Johadan:
Now, some of you might question why I don’t just set my “Self Cast Key” to Shift in the interface.
I don’t have a “Self Cast Key” set to anything because I use all three modifiers (Shift, Ctrl, Alt) for other macros/abilities. So this macro has its use for those who float in the same boat.
The self cast key doesn’t work in macros anyway (aside from defining a variable you can use)
6 Likes
have you noticed that u cant use it on some players? i used to use it on everyone but now only a few
So in summary if we combine both of the posts we come up with:
#showtooltip
/cast [mod:shift,@player] [] Heart Essence; Heart Essence
Ty guys
The ; Heart Essence
is redundant and will never fire.
1 Like