Hi i want to cast my monk “summon white tiger statue”, at my feet when its available but link it to my tiger palm.
i have the following macro to cast at feet, but not sure how to link it to tiger palm…tia
#showtooltip summon white tiger statue
/script UIErrorsFrame:Hide()
/console Sound_EnableSFX 0
/use [@player]summon white tiger statue
/console Sound_EnableSFX 1
/script UIErrorsFrame:Clear(); UIErrorsFrame:Show()
Not possible, both abilities are on the GCD.
1 Like
Oh i see,
So is there anything i could macro it to?
For eg .
/cast kegsmash
/cast statue if not on cooldown
/ignore casting statue if on cooldown.
or a /cast sequence?
obvious this is a example, its just for quality of life
Nothing rotational, no.
You could stick it on a modified press along with something else so like
#showtooltip
/cast [mod:alt,@player] Summon White Tiger Statue; Tiger Palm
So reg press would be tiger palm, alt-press would be summon statue.
Table of Contents:
Intro - Macro Basics
Macros - What can they do?
Macros - What can they NOT do?
Conditionals - How do they work?
Scripting - What is possible in a macro?
Macros - Tips, Tricks, and Shortcuts
1. Intro - Macro Basics
Macros are a very useful tool within the World of Warcraft client. They allow you to combine multiple actions onto a single button. While the entire macro will run every time, actions which trigger the Global Cooldown will stop later GCD actions from functionin…
1 Like