Edit: I'm a moron
Last edited by Oronanomicon; 03-10-2014 at 11:07 AM.
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
Last edited by mistgun; 03-14-2014 at 09:31 PM.
Latest Scripts: Ultimate Dawnport FACC Spots Souleater Tunnels Useful Lua:
Try it now, it should activate pot healer now too!![]()
Latest Scripts: Ultimate Dawnport FACC Spots Souleater Tunnels Useful Lua:
So use just this, it's no sense to use uhp with action. Healer will do it
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
Latest Scripts: Ultimate Dawnport FACC Spots Souleater Tunnels Useful Lua:
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...