print("Dominion Script Helper, Loaded") delay = GetTickCount() failsafe = false function OnTick() if (myHero.health/myHero.maxHealth < 0.25) then CastSpell(RECALL) end if (myHero.health/myHero.maxHealth > 0.35) then if GetTickCount() - delay > 3000 and not failsafe then myHero:MoveTo(7300,1798) failsafe = true end if GetTickCount() - delay > 6000 then myHero:MoveTo(6400,1798) delay = GetTickCount() failsafe = false end end end