Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. procedure fish();
  2. var
  3. clickPoint : TPoint;
  4. begin
  5. if canFish.isFinished() then
  6. begin
  7. clickPoint := fishingSpotModel.closestTo(clientCenter)[0].randomizePointEllipse(random(15, 30));
  8. mouse.click(clickPoint);
  9. canFish.setTime(3000);
  10. end;
  11. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement