Macro for casting heroism/bloodlust

Hey i am trying to get a macro to work where it can cast heroism/bloodlust pvp talent since i play mercenary buff and rbgs.
Its in a macro where i also cast other stuff.

#Showtooltip
/cast [nomod] Earthbind Totem
/cast [mod:shift] Thundercharge(PvP Talent)
/cast [mod:ctrl] Heroism(PvP Talent); Bloodlust(PvP Talent)

Currently not working like that atleast

1 Like
#Showtooltip
/cast [nomod] Earthbind Totem
/cast [mod:shift] Thundercharge(PvP Talent)
/cast [mod:ctrl] Heroism(PvP Talent); [mod:ctrl] Bloodlust(PvP Talent)

You need to add the [mod:ctrl] conditional to both Heroism and Bloodlust, otherwise it will try to cast Bloodlust anyway, with or without modifier. I suppose that’s the part that wasn’t working?

1 Like

yeah that was the part not working thanks!

1 Like

You can’t reuse the same modifier twice on the same cast; the 2nd one will never trigger because the first will always return true.

#showtooltip
/cast [mod:ctrl] Bloodlust(PvP Talent); [mod:shift] Thundercharge(PvP Talent); Earthbind Totem
/cast [mod:ctrl] Heroism(PvP Talent)
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.