Thread Tools Display Modes
10-25-11, 06:56 AM   #1
Quokka
A Chromatic Dragonspawn
 
Quokka's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2005
Posts: 196
Hunter Macro

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.
__________________
  Reply With Quote
10-25-11, 07:32 AM   #2
Dridzt
A Pyroguard Emberseer
 
Dridzt's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2005
Posts: 1,359
Could try replacing
/petpassive [mod]
/petdefensive [mod]

with

/petfollow [mod]

Does any of those trigger gcd?
  Reply With Quote
10-25-11, 09:13 AM   #3
Quokka
A Chromatic Dragonspawn
 
Quokka's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2005
Posts: 196
Originally Posted by Dridzt View Post
Could try replacing
/petpassive [mod]
/petdefensive [mod]

with

/petfollow [mod]

Does any of those trigger gcd?
non on the stop part, only on start and that would be Hunter's Mark
__________________
  Reply With Quote
10-25-11, 10:54 AM   #4
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,313
If it's exactly as you typed, you need a space between the command and the macro condition, otherwise WoW will try to find a command that doesn't exist.

To clarify the macro, I'd use something like this
Code:
/assist [@focus,help][@pet]
/cast Hunter's Mark
/startattack
/petattack
Telling it to attack the new target is sufficient enough if you don't have it in assist mode. The only reason you would ever need to tell it to stop attack on the old target is if you wanted to clear its threat list. This is only useful to call it off from attacking a CC target after its current one dies. Whatever target you manually tell it to attack will automatically appear at the top of your pet's threat list. You shouldn't need to change its attitude in this example. This is only if you're not in assist mode, in which the game automatically makes sure your pet is attacking the same one you're hitting. In the time you're switching through the list of attitudes, none of the others will take any effect at all.

As far as your character's autoattacks, they always hit whatever you're currently targeting if it's already active. The only reason for /startattack is to activate it.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
  Reply With Quote
10-26-11, 12:05 AM   #5
Quokka
A Chromatic Dragonspawn
 
Quokka's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2005
Posts: 196
The reason I was looking for a stop, was because off the old style things where you needed to stop casting like old mandokir.

I could'nt get it working with a modifier.

#showtooltip Hunter's Mark
/assist [@focus,exists][@pet,exists]
/cast [nomodifier] Hunter's Mark
/startattack [nomodifier]
/petassist [nomodifier]
/stopattack [modifier]
/petfollow [modifier]

but since the pet & attack commands are not cast I'm not sure this would work
__________________
  Reply With Quote
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

WoWInterface » AddOns, Compilations, Macros » Macro Help » Hunter Macro

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off