WoWInterface

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

Jynks 04-08-15 08:27 PM

Penance Macro Help
 
Hi there... still trying to get wow back into the state I had it before my break. I thought all the macros saved :(

What I would like is a penance macro that....

• When mousing over it casts at teh mouseover target. Regardless if it is friend or foe (as it can dmg and heal)
• If there is no mouseover target but there is a selected target, it cast at that.

This is what I tried but it doesn't work....

Quote:

/cast [target=mouseover] Penance; [target, nodead] Penance
Any ideas?

Seerah 04-08-15 10:00 PM

add exists to your first conditional

Code:

/cast [target=mouseover, exists] Penance; [target, nodead] Penance
or, shorter...
Code:

/cast [@mouseover,exists] Penance; [nodead] Penance

10leej 04-08-15 10:51 PM

Quote:

Originally Posted by Seerah (Post 308046)
or, shorter...
Code:

/cast [@mouseover,exists] Penance; [nodead] Penance

Or even shorter (macros don't need spaces)

Code:

/use [@mouseover,exists][]penance

Phanx 04-09-15 07:12 PM

While there's technically no need to specify "nodead" since Penance can't be cast on a dead target, it's better to keep it so you don't end up with the "glowing hand" cursor. I'd also add "nodead" to the mouseover check so it also ignores dead mouseover targets:

Code:

/cast [@mouseover,nodead] [nodead] Penance
(And I'd keep the spaces to improve readability in the tiny in-game macro editor. :))

Jynks 04-10-15 12:42 AM

thanks guys!


All times are GMT -6. The time now is 02:21 AM.

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