Advertisement
Guest User

mana rune sorcerer

a guest
Jun 29th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. local manaPercent = 95
  2.  
  3. function ManaPercent()
  4. return math.abs(Self.Mana() / (Self.MaxMana() * 0.01))
  5. end
  6.  
  7. Module.New('Mana', function()
  8. if (ManaPercent() < manaPercent) then
  9. Self.UseItem(11614)
  10. wait(300,400)
  11. end
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement