Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. function hmCure()
  2.   if bals.hm == true and doing.hm == false then
  3.     echo("pie")
  4.     if stats.health < tonumber(stats.maxhealth * 0.85) then
  5.       send("drink health")
  6.       doing.hm = true
  7.     elseif stats.mana < tonumber(stats.maxmana * 0.85) then
  8.       send("drink mana")
  9.       doing.hm = true
  10.     end -- if
  11.     echo("cake")
  12.   end -- if
  13. end -- function hmCure
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement