http://forums.tibiawindbot.com/showt...highlight=gems
Printable View
Edit: I'm a moron
well my character die 2 times because the healer turn off i dont know why.. maybe someone put it off while using my pc(i share it with my brother sometimes) well to avoid that i want to know if u can make some persisten hotkey o dont know what exactly i need.. something like that
IF HEALER IS OFF... AND HP BELOW 15%... USE ULTIMATE HEALTH POTIONS..
i think thos can avoid my problem and if its can make a sound when it happen is better
thanks in advance
this should work man:
init start
healer = getsetting('SpellHealer/Enabled')
healerPot = getsetting('PotionHealer/Enabled')
init end
auto(100)
if healer == 'no' or healerPot == 'no' and $hppc <= 20 then
useoncreature('ultimate health potion', $self) waitping()
sethealing('on')
setsetting('PotionHealer/Enabled', 'yes')
end
Try it now, it should activate pot healer now too! :D
So use just this, it's no sense to use uhp with action. Healer will do it :D
init start
local healer = getsetting('SpellHealer/Enabled')
local healerPot = getsetting('PotionHealer/Enabled')
init end
auto(100)
if healer == 'no' or healerPot == 'no' then
sethealing('on')
setsetting('PotionHealer/Enabled', 'yes')
end
Hello.
I need one scrip to use "exevo gran mas vis" (rage of the skyes) when have 4 monsters on screen, with 100% hp each one (the monsters are Frost dragon and Frost dragon hatchling)
ty...