Advertisement
munsking

eve jump bot

Nov 25th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. begin
  2. Variable.Set("hasJump", "true")
  3. while Variable.Is equal to("hasJump", "true")
  4. begin
  5. Function.Execute("check jump")
  6. end
  7. end
  8. begin
  9. Window.Display message box("You should have arrived at your destination", "false")
  10. end
  11.  
  12. function("check jump")
  13. begin
  14. Mouse.Click at coordinate("85", "135", "Right")
  15. Macro.Pause("500")
  16. Plugins.OCR (Simple)("96", "136", "307", "152", "jumpMsg")
  17. // Window.Display message box("{jumpMsg}", "true")
  18. Clipboard.Set text("{jumpMsg}")
  19. Variable.Set("hasJump", "false")
  20. Plugins.overlay (Text without background)("found thingie, going there", "macroMessages", "494", "85", "x1y1", "20000", "Calibri", "16", "255", "255", "255", "0")
  21. if Variable.Contains text("jumpMsg", "Jump through stargate")
  22. begin
  23. // Window.Display message box("jumping", "true")
  24. Plugins.overlay (Text without background)("warping to gate", "macroMessages", "494", "85", "x1y1", "20000", "Calibri", "16", "255", "255", "255", "0")
  25. Variable.Set("hasJump", "true")
  26. Mouse.Click at coordinate("109", "146", "Left")
  27. Macro.Pause("10000")
  28. Variable.Set("warpActive", "false")
  29. end
  30. while Variable.Does not contain text("warpActive", "JUMPING")
  31. begin
  32. Plugins.overlay (Text without background)("waiting for jump to start, then waiting 10 seconds", "macroMessages", "494", "85", "x1y1", "20000", "Calibri", "16", "255", "255", "255", "0")
  33. Plugins.OCR (Simple)("909", "808", "1000", "828", "warpActive")
  34. Macro.Pause("1000")
  35. end
  36. Macro.Pause("10000")
  37. Plugins.OCR (Simple)("100", "180", "130", "193", "hasDock")
  38. if Variable.Contains text("hasDock", "Dock")
  39. begin
  40. Mouse.Click at coordinate("110", "190", "left")
  41. end
  42. end
  43. function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement