Guest User

Untitled

a guest
Jul 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. function Hbal3()
  2.         for k, v in pairs(cures.herb_slice) do
  3.             if afflictions[k] and not trytoeat and caneat then
  4.                 send("outc " ..v)
  5.                 send("eat " ..v)
  6.                 trytoeat = true
  7.                 tempTimer( 1, [[TryingToEat()]] )
  8.             end
  9.         end
  10.     return true
  11. end
  12.  
  13. function TryingToEat()
  14.    if trytoeat and caneat then
  15.     trytoeat = false
  16.      caneat = true
  17.     echo("JEROMYSYSTEM: EATING FAILED RESET BALANCE")
  18. end
  19. end
Add Comment
Please, Sign In to add comment