PDA

View Full Version : Simple Macro Help


Kodiax
05-12-2006, 04:12 PM
Hi-

I'd like a macro for my shaman that will cast a heal on my targeted player and say in group something along the lines of "Heal coming for PlayerX".

I have a feeling this is simple, just don't know much about macros and haven't found what I need through searches.

Thanks in advance!

Dynatos
05-12-2006, 05:14 PM
With the old system:

/p "Heal coming for %t";
/script CastSpellByName("Healing Wave");

With the new system, implemented today:

/p "Heal coming for %t";
/cast [help] Healing Wave;


I'm not sure if %t works in the new macros system. I can't test since, well, I'm at work.

Kodiax
05-12-2006, 06:45 PM
Thanks - I'll start playing around with that tonight - since I can check here at work either!

Dynatos
05-12-2006, 08:01 PM
/p "Heal coming for %t";
/cast [help] Healing Wave(Rank 4);



You might have to add a rank here, but I'm not sure (see the bolded - I don't know Shamans, so I don't know what ranks of HW they get).