Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. findColorsSpiralTolerance(x, y, TPA, ELLIS_COLOR, mainScreen.getBounds(), ELLIS_TOL, colorSetting(2, ELLIS_HUE, ELLIS_SAT));
  2. if (length(TPA) > 0) then
  3. begin
  4. TPA.excludePointsDist(0, 130, mainscreen.getCenterPoint().x, mainscreen.getCenterPoint().y);
  5. ATPA := TPA.toATPA(10, 10);
  6. ATPA.filterBetween(0, 25);
  7. ATPA.sortFromMidPoint(mainscreen.playerPoint);
  8. smartImage.debugATPA(ATPA);
  9. for i := 0 to high(ATPA) do
  10. begin
  11. mouse(MiddleTPA(ATPA[i]), MOUSE_MOVE);
  12. if isMouseOverText(['Ellis'], 750) then
  13. begin
  14. fastClick(MOUSE_RIGHT);
  15. if chooseOption.select(['hides']) then
  16. begin
  17. smartImage.clearArea(mainscreen.getBounds());
  18. exit(true);
  19. end;
  20. end;
  21. end;
  22. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement