Healing macros

Came across this:
http://wowwiki.wikia.com/wiki/Useful_macros_(1.0)
And was wondering if these macros still work? Namely, the one that claims to auto-target nearby allies that have less than 70% health and cast a heal on them.
Trying to use it only yields an error, though:

http://wowwiki.wikia.com/wiki/Useful_macros_(1.0)
And was wondering if these macros still work? Namely, the one that claims to auto-target nearby allies that have less than 70% health and cast a heal on them.
- Code: Select all
/script for i=1,40 do TargetNearestFriend();
if UnitHealth("target")/UnitHealthMax("target") < 0.7 then
if UnitIsPlayer("target") then CastSpellByName("Lesser Healing Wave") end end end; TargetLastEnemy();
Trying to use it only yields an error, though:
