Page 1 of 1

Macro Help: Intervene & Roar of Sacrifice

Posted: Sun May 16, 2010 8:34 pm
by Tratzul
So, I recently re-tamed and specced my pet turtle Murktusk to have both Intervene and Roar of Sacrifice.

But I can't make her use it just with a focus... the macro needs me to target (myself as the focus test) as well, then it works just fine... <.<

THis is what I have in the macro:

/pettarget=focus
/cast [pet: turtle] Intervene
/cast [pet: turtle] Roar of Sacrifice

Why does it need me to target the focus? I can't do that in mid fighting... @.@

[Note: I am a clicker, so I can't really use a mouseover... since I click.]

Re: Macro Help: Intervene & Roar of Sacrifice

Posted: Sun May 16, 2010 11:56 pm
by Wassa
Your first line says to do the macro only if your pet is already targeting your focus target. This is why it is failing to finish the rest of the macro unless you clicked to target your focus.

Try this instead:

Code: Select all

/cast [@focus,pet:turtle] Intervene
/cast [@focus,pet:turtle] Roar of Sacrifice
[/color]

Re: Macro Help: Intervene & Roar of Sacrifice

Posted: Mon May 17, 2010 1:24 am
by Tratzul
Wassa wrote:Your first line says to do the macro only if your pet is already targeting your focus target. This is why it is failing to finish the rest of the macro unless you clicked to target your focus.

Try this instead:

Code: Select all

/cast [@focus,pet:turtle] Intervene
/cast [@focus,pet:turtle] Roar of Sacrifice
[/color]
Thank you! ^.^