PDA

View Full Version : [WoW] 2 Dual Box Shaman Healing Macro



celticlad94
02-17-2010, 03:59 PM
Basically I suck with macros and every attempt I try to make this macro it turns out unsuccessful.

What I want to do is:

For example:

Lesser healing wave is keybinded to "2"

Once 2 is pressed they both heal themselves, once Alt+2 is pressed they both heal "Char B", once Ctrl+2 is pressed they both heal "Char A".


I tried doing:

CharA:
/cast [target=Char A] Lesser Healing Wave
/cast [target=focus,mod:ctrl] Lesser Healing Wave
/cast [target=Char B,mod:alt] Lesser Healing Wave

(The focus is Char A on both)

CharB:
/cast [target=Char B] Lesser Healing Wave
/cast [target=focus,mod:ctrl] Lesser Healing Wave
/cast [target=Char B,mod:alt] Lesser Healing Wave

It works fine normally (the first one) But the other 2 (when I use ctrl and alt) still do the same as the first line. Can someone help fix my noob macro skills please?

suprafro
02-17-2010, 04:14 PM
You did not include nomod in your first line, thus thats the action that would always happen reguardless of whatever mod keys you are holding down. So just add it in nomod:


CharA:
/cast [nomod, target=Char A] Lesser Healing Wave
/cast [target=focus,mod:ctrl] Lesser Healing Wave
/cast [target=Char B,mod:alt] Lesser Healing Wave

(The focus is Char A on both)

CharB:
/cast [nomod, target=Char B] Lesser Healing Wave
/cast [target=focus,mod:ctrl] Lesser Healing Wave
/cast [target=Char B,mod:alt] Lesser Healing Wave

celticlad94
02-17-2010, 04:16 PM
Ahh yes (Doh!) sorry xD

celticlad94
02-17-2010, 04:27 PM
Hmmm the Ctrl one doesnt seem it work, for it to work i need to press 2 then Ctrl, whereas on the alt I can do it normally.


EDIT: Nevermind, it was cause they were keybound to something else