Thread: Hunter Macro
View Single Post
10-31-11, 12:56 PM   #6
efindel
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Dec 2007
Posts: 8
Originally Posted by Quokka View Post
I have some problems with my hunter Macro


Code:
#showtooltip Hunter's Mark
/assist [@focus,exists][@pet,exists]
/stopattack[mod]
/petpassive[mod]
/petdefensive[mod]
/cast Hunter's Mark
/startattack
/petassist
/stopmacro[mod]
It should replace my auto-shot. and call in huntersmark + pet assist.
that works so far, but I cannot tell it to call off my pet and set it to defensive while stop my attacks.
The macro you've written does the

Code:
/cast Hunter's Mark
/startattack
/petassist
regardless of whether or not you're holding down a modifier key. Thus, when you hit this while holding a modifier key, it stops your attack and calls off your pet... then immediately starts them up again.

Right now, your trailing
Code:
/stopmacro [mod]
doesn't do anything at all -- you're already at the end of the macro, so there's nothing it's actually cutting off. I think what you meant to code may be this:

Code:
#showtooltip Hunter's Mark
/assist [@focus,exists][@pet,exists]
/stopattack [mod]
/petpassive [mod]
/petdefensive [mod]
/stopmacro [mod]
/cast Hunter's Mark
/startattack
/petassist
If you're holding down a modifier key, this would stop the macro before the part that has it start attacks and such.
  Reply With Quote