Quote Originally Posted by 'Redbeard',index.php?page=Thread&postID=145721#pos t145721
Good morning multiboxers,

I am looking for some suggestions for my scenario.

Say I have 4 characters, char1,char2, char3, char4

Char1 is a tank.
Char2 is the primary healer. He has all the heal macros setup and works fine.
Char3 is the primary offhealer. The way I am setting him up is... /target char2; /cast [dead, target=party1target] Flash Of light; etc etc. So its checking to see if the main healer is dead before casting heals on the mains target (which is what i want).
Char 4 is the 2ndary offhealer. I am struggling with how I would set him up. Ideally he should be checking to see if both char2 and char3 are dead before healing the target, but I dont think I can do that. If i just check if char3 is dead, then he will still cast if char2 (the primary healer) is alive... I only want him to cast if char2 and char3 are dead.

Any thoughts?

Thanks for any help you can provide.
/target char2; /cast [dead,target=party1target] Flash of light

will not work.

This will check to see if party1target (most likely the enemy) is dead. I'm assuming you want to check if your main healer (char2) is dead, in which case you really need to do something like this:

/stopmacro [target=char2,nodead]
/cast [target=party1] Flash of Light

This will do nothing if char2 is alive, but if char2 is dead it will flash of light on your main character.