Guest User

Untitled

a guest
Oct 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. begin
  2. Function.Execute("Heal")
  3. end
  4.  
  5. function("Heal")
  6. // barra de HP/DS en el item slot 5 (POLLO)
  7. if Color.At coordinate is not (RGB)("198", "60", "49", "140", "127")
  8. begin
  9. Keyboard.Hold keys("5")
  10. Function.Execute("Human Pause")
  11. Keyboard.Release keys("5")
  12. end
  13. // barra de HP en el item slot 6 (PAN)
  14. if Color.At coordinate is not (RGB)("198", "60", "49", "186", "127")
  15. begin
  16. Keyboard.Hold keys("6")
  17. Function.Execute("Human Pause")
  18. Keyboard.Release keys("6")
  19. end
  20. // barra de DS disco diguimon item slot 7 (DISCO DS)
  21. if Color.At coordinate is not (RGB)("4", "228", "243", "144", "141")
  22. begin
  23. Keyboard.Hold keys("7")
  24. Function.Execute("Human Pause")
  25. Keyboard.Release keys("7")
  26. end
  27. // barra de ds tamer item slot 8 (VITAMINAS)
  28. if Color.At coordinate is not (RGB)("15", "241", "255", "141", "68")
  29. begin
  30. Keyboard.Hold keys("8")
  31. Function.Execute("Human Pause")
  32. Keyboard.Release keys("8")
  33. Macro.Pause("2000")
  34. end
  35. function
  36.  
  37. function("Human Pause")
  38. begin
  39. Variable.Set random number("HumanTime", "250", "700")
  40. Macro.Pause("{HumanTime}")
  41. end
  42. function
Add Comment
Please, Sign In to add comment