PDA

View Full Version : Alex's Final Macro of the Week: Green Dragon Breath


AlexanderYoshi
01-24-2006, 10:56 PM
/script local startId = 68; for z=6,1,-1 do if ( IsCurrentCast(startId+k, "spells")==0) then CastSpellByName("Flash
Heal(Rank "..z..")"); end; end


If you've been facing the Green Dragons, your healers may have been breathed on by accident. If so, you'll notice that the cooldown is rank specific. So this macro should automatically use the next rank if it is down.

If you have not learned all of your spells, the startId may need to be changed!

Euroa
01-28-2006, 04:23 AM
A bit more advanced than the one i came up with, thanks alex :)

Euroa
01-28-2006, 07:22 AM
/script local startId = 68; for z=6,1,-1 do if ( IsCurrentCast(startId+z, "spells")==0) then CastSpellByName("Flash Heal(Rank "..z..")"); end; end
/cast Flash Heal(Rank 7)

changed the "k" to "z" and added so it actually casts rank 7 if nothing else is going on