PDA

View Full Version : Divine Intervention



Zite83
06-25-2008, 04:20 AM
I tried searching for this.. but no luck so I wondering if I could get some help... What I am looking for is a macro that will do this...

Divine Intervention Logic
------------------------------------
Cast (DI) on target1 if alive
else
Cast (DI) on target2 if alive
else
Cast (DI) on target3 if alive
else
Cast (DI) on target4 if alive
------------------------------------

Molt
06-25-2008, 05:26 AM
Sitting at work at the moment so not able to test this but if my brain is working right you may want to try:

/cast [target=target1,nodead][target=target2,nodead][target=target3,nodead][target=target4,nodead] Divine Intervention

Gideon_2
06-25-2008, 05:34 AM
Maybe im wrong but shouldn`t it be :

/cast [target=target1,nodead] Divine Intervention; [target=target2,nodead] Divine Intervention; [target=target3,nodead] Divine Intervention; [target=target4,nodead] Divine Intervention

or will the other macro work as well ?

Shiena
06-25-2008, 06:01 AM
/cast [target=Toon1,help,nodead][target=Toon2,help,nodead]... Divine Intervention


This ... using it myself. Replace ToonX with the actual character names and the dots can be replaced with additional [target=ToonX,help,nodead] parameters.

Djarid
06-25-2008, 06:07 AM
Maybe im wrong but shouldn`t it be :

/cast [target=target1,nodead] Divine Intervention; [target=target2,nodead] Divine Intervention; [target=target3,nodead] Divine Intervention; [target=target4,nodead] Divine Intervention

or will the other macro work as well ?Molt's is the most efficient, as it is supplying multiple options to a single spell cast command (the first one to match wins)

Your's is actually 4 separate spell cast commands (the ; is a command separator)

Shiena
06-25-2008, 06:20 AM
Molt's is the most efficient, as it is supplying multiple options to a single spell cast command (the first one to match wins)

Your's is actually 4 separate spell cast commands (the ; is a command separator)
Isn't the one you quoted four seperate casts and mine a single cast?

Djarid
06-25-2008, 07:10 AM
yes that's right, but Molt's is also a single cast

Gideon_2
06-25-2008, 10:23 AM
kk nice, well learned something new today then :)

Zite83
06-25-2008, 03:04 PM
I will let my friend know if any of these work for her... Thank you so much for the input! I love how we all fight each other to come up with the right answer, because in the end we all learn something new. This is why I love this place and not the WoW forums!