WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   Macro Help (https://www.wowinterface.com/forums/forumdisplay.php?f=140)
-   -   Hunter Macro Help (https://www.wowinterface.com/forums/showthread.php?t=33662)

Flarin 07-02-10 12:04 PM

Hunter Macro Help
 
I have searched and found some similar macro's, but nothing exactly like what I want - I hoping for some help.

What I want is this:

Press macro bound key, no modifier

Scenario 1: i have no target. Target nearest [harm], /petattack /cast Hunter's Mark, /cast Auto Shot

Scenario 2: pet has target. Target=pettarget, [nodead] ,/cast Hunter's Mark /cast Auto Shot

Press macro bound key, with Control modifier
Scenario 3: focus has target. Target=focustarget, [nodead], /petattack, /cast Hunter's Mark /cast Auto Shot

This is what I have so far, and I know I am way off:

Code:

#showtooltip
/cast [mod:ctrl, target=pettarget, harm, nodead] [target=focustarget, harm, nodead] Hunter's Mark
/petattack
/cast Auto Shot

Thanks for any help anyone can provide.


* EDIT *

So far this is working - it doesn't use a modifier key but instead uses logic to find the target:

Code:

#showtooltip
/target [target=focustarget, exists, nodead][target=pettarget, exists, nodead]
/cast [nomod] Hunter's Mark
/petattack [target=target, exists]
/startattack [nomod]

Okay - have changed it a bit. the logic is this:

If I have a focus, and it has a target then .. Cast Hunter's Mark, petattack, startattack
If no focus target, but my pet has a target .. Cast Hunter's Mark, petattack, startattack
If no focus or no pet target then it targets the nearest attackable enemy and then stops. The NEXT click, because you now have a target, will target the sequence and send in your pet.

I have a question on this bit - Why does it target ANYTHING at all with no pettarget or no focustarget? I think it is the /petattack [target=target, exists] - its like WoW can't help itself, it MUST target something, although it doesn't send the pet in.

If I hold down any modifier key - control or alt or shift then it will still follow the same logic, the pet will attack, BUT, no Hunter's Mark and no startattack

Krahg 07-31-10 12:14 AM

If I understand correctly you want your macro to select a target and the use three additional command on the target selected. Therefore, the final three are easiest.

What the main issue seems to be is selecting your target, here is what I came up with:
Code:

if the pet has a target
    select the pet's target as my target

if (my focus has a target and the mod key is pressed)
    select my focus' target as my target

if I do not have a target
    select the nearest enemy as my target

if i do not have a target
    stop the macro

/cast (...)

Here is the final macro I came up with.
Code:

/target [@pettarget, exists]
/target [mod, @focustarget]
/targetenemy [noexists]
/stopmacro [noexists]
/cast Hunter's Mark
/cast !auto shot
/petattack

I hope this helps :)


All times are GMT -6. The time now is 01:23 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI