Hey EN,
My primary is a bard that should have had a script for pulling up a mobs healthbars long ago, but I'm finally getting around to it. So I found your AutoTarget W/Healthbar and am trying to modify it for my needs.
Your code is designed to pull up the first set target and do something
until that target is gone. What I need, is to pull up the first set target (
and keep it up) and then look for more and
pull theirs up too. I need all the mob's healthbars up so I can decide which ones to provo on the other.
So I look'd at what your code did and teased out the part that will pull up the healthbar of the set target, but it continues finding anything in the area and pulling up it's healthbar over the previous one.
Here's my code:
set %TargetTypes GH
top:
Finditem %TargetTypes G_16
if #findcnt > 0
{
set #lobjectID #findid
event macro 50 5
wait 15
contpos 0 0
wait 10
}
goto top
What (no doubt obvious) am I missing?