Janilabo

Untitled

Jul 14th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.40 KB | None | 0 0
  1. program ChangeLooks2;
  2.  
  3. var
  4.   Char: TPointArray;
  5.   i, c, x: Integer;
  6.  
  7. procedure LoadOptions;
  8. begin
  9.   Char := [Point(244, 193)];
  10.   // or: Char[0] := Point(244, 193);
  11. end;
  12.  
  13. begin
  14.   LoadOptions;
  15.   for i := 0 to 1 do
  16.   begin
  17.     repeat
  18.       MoveMouse(Char[0].X, Char[0].Y);
  19.       ClickMouse(Char[0].X, Char[0].Y, mouse_left);
  20.       Wait(1000);
  21.       Inc(c);
  22.     until(c = x);
  23.   end;
  24. end.
Advertisement
Add Comment
Please, Sign In to add comment