Advertisement
MrTrala

ZerkHeal

Aug 20th, 2016
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. --[[
  2.     ZerkRune for ArchlightOnline
  3.     Version 1.0
  4.     By Mr Trala
  5. ]]
  6.  
  7. config = {
  8.     ManaRune = 11603, -- ID of your mana/heal Rune.
  9.     HealCAST = 90, -- x% hp to "combo" your heal (will use your RUNE and exana mort).
  10. }
  11.  
  12. Self.HP = function()
  13. return math.abs(Self.Health()/(Self.MaxHealth()*0.01))
  14. end
  15.  
  16. Module('Manarune', function(mod)
  17.     if Self.HP() <= config.HealCAST then
  18.         Self.UseItem(config.ManaRune)
  19.         Self.Cast('exura ico', 150)
  20.         wait(200, 400)
  21.     end
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement