I’m trying to create two macros for my hemo/ambush spec. They look like this currently
Ambush macro is
#showtooltip Ambush
/equip Stonevault Shiv
/cast Ambush
Hemo macro is
#showtooltip Hemorrhage
/equip Zealot Blade
/cast Hemorrhage
Can anyone tell me how to make these macros do what I want? which is equip my dagger or one handed sword before casting. Thanks
Those should work. There appears to be an internal delay (or maybe it triggers the GCD?) when you swap equipment so you’ll need to tap each macro twice to get it to actually go off.
1 Like
If you don’t specify which slot the weapon you’re equipping goes in to it will equip it into either hand. And yeah there’s a bit of a delay after equipping the weapon so it will not be instant and you should plan for that. You might try this:
#showtooltip Ambush
/equipslot 16 Stonevault Shiv
/cast Ambush
#showtooltip Hemorrhage
/equipslot 16 Zealot Blade
/cast Hemorrhage
2 Likes
Equipping a different weapon triggers a gcd, which someone above me said. You’ll have to double tap the macros you have to make them work.