Hey guy, I'm looking for a simple Vet Healing script. Super simple, just for a single pet. I want it to put a bandie on every 2 seconds. Alternatively, it could check to see if it needs a bandie and only apply if it needs it. Either way, I just really need this script. Does anyone have anything like this? I've checked the ones in the EasyUO public script library, but they are all elaborate things with many extras. As well, I can't find one there that continuously heals. They will only heal until max, then i have to click a button to heal again. I just want to hit start on this thing, and forget it. (like Blaze’s Healer but for pets)
Side note, I know that generally Cleric healing is better for healing pets on this shard. But I need this script for a very specific reason.
Thanks guys, any help would be super appreciated. If someone can get me a good script that works to my liking, I'll be happy to make a contribution to your gold pile in the amount of 1 Mil, just as a token of my appreciation.
Post script here, I'm Melkor in game. Thanks.
Looking for Vet Healing Script (offering Prize)
Re: Looking for Vet Healing Script (offering Prize)
Just target the pet you want to heal after clicking play.
set #targcurs 1
while #targcurs = 1
{
wait 1
}
set %PetID #LTARGETID
while #true
{
gosub Heal %PetID
}
sub Heal
set #LTARGETID %1
set #LTARGETKIND 1
event macro 1 0 [band
target
if #targcurs = 1
event macro 22 0
wait 2s
return
set #targcurs 1
while #targcurs = 1
{
wait 1
}
set %PetID #LTARGETID
while #true
{
gosub Heal %PetID
}
sub Heal
set #LTARGETID %1
set #LTARGETKIND 1
event macro 1 0 [band
target
if #targcurs = 1
event macro 22 0
wait 2s
return
IGN: Mindfreak
Re: Looking for Vet Healing Script (offering Prize)
Thanks Cope. It's too much to explain, but I'm 99% sure [band won't work for my purposes. I will test it tonight after work.
BTW Cope, I got your pm the other day on portal, but haven't logged in to respond yet, I will tonight.
BTW Cope, I got your pm the other day on portal, but haven't logged in to respond yet, I will tonight.
Re: Looking for Vet Healing Script (offering Prize)
Someone sent me one that i think will work. I will test it tonight. Thanks everyone.