Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. init start
  2. -- Friends to heal
  3. local friends = {
  4. 'Vic Flow',
  5. 'Bubble'
  6. }
  7.  
  8. local healHPPC = 70 -- Minimum HPPC to heal
  9. local minHPPC = 25 -- Minimum HPPC you should have to heal
  10. local minMPPC = 30 -- Minimum MPPC you should have to heal
  11.  
  12. table.lower(friends)
  13. init end
  14.  
  15. auto(100)
  16.  
  17. if $mppc >= minMPPC and $hppc >= minHPPC then
  18. foreach creature m 'pt' do
  19. if m.hppc < healHPPC and table.find(friends, m.name:lower()) then
  20. cast('exura sio "' .. m.name:lower())
  21. wait(300, 500)
  22. return
  23. end
  24. end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement