Page 1 of 1

Healing macros

PostPosted: Sat Oct 03, 2015 6:26 pm
by gotmilk0112
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.

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:

Image

Re: Healing macros

PostPosted: Sat Oct 03, 2015 6:29 pm
by Younie
You can use lazypig's subaddon "quickheal" if you want a bot heal maccro

Re: Healing macros

PostPosted: Sat Oct 03, 2015 6:58 pm
by Ana
Watch the raidframe

Re: Healing macros

PostPosted: Sat Oct 03, 2015 7:27 pm
by gotmilk0112
Younie wrote:bot heal maccro


Is it even legal to use something that auto-targets low health allies?

Ana wrote:Watch the raidframe


Kinda hard to know if a person is in range of heals, due to highly inconsistent range checks. Really useful to have something that will auto-target the closest player with a certain health deficit.

Re: Healing macros

PostPosted: Sat Oct 03, 2015 9:28 pm
by Younie
sRaidframes has a pretty accurate 40yards range check
I think luna does too, but I haven't tried it myself so I can't confirm

The "quickheal" addon is legal yes. It doesn't "target" tho, it just picks someone and cast a heal directly

Re: Healing macros

PostPosted: Sat Oct 03, 2015 10:04 pm
by Ana
Luna is weird because sometimes it reacts to 40 yards threshold and sometimes to 30. And sometimes it does other strange stuff (I've had a guy at Ony entrance shown as in range while I was at the boss, for instance...) But if people move around enough, it's generally a good enough indicator.