Advertisement
Guest User

endless online auto potter scar script

a guest
Nov 26th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. program AutoPotter;
  2. //
  3. // This script will automatically use a potion when your health
  4. // drops below 50%. Place your pots in the far upper right hand
  5. // corner of your inventory.
  6. //
  7. // http://eomix.blogspot.com
  8. //
  9. var x, y:integer;
  10. procedure Pot;
  11. begin
  12. FindWindow('Endless Online')
  13. ActivateClient
  14. repeat
  15. if(FindColorSpiral(x, y, 1579032, 185, 38, 185, 38))then
  16. begin
  17. clickmouse(78, 360, true);
  18. wait(50)
  19. clickmouse(464, 376, true);
  20. wait(5)
  21. clickmouse(464, 376, true);
  22. wait(200)
  23. end
  24. until(FindColorSpiral(x, y, 1579032, 185, 38, 185, 38)=false)
  25. end;
  26. begin
  27. repeat
  28. Pot
  29. until(false)
  30. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement