Author Topic: Video Game point and click...over and over  (Read 530 times)

Offline blueguyz

  • Leecher
  • Posts: 7
  • Rep: 0
    • View Profile
    • Email
Video Game point and click...over and over
« on: July 15, 2010, 10:28:58 am »
[scar]program Omerta;
var
i: Integer;

begin
     ClearDeBug;
     i:= 0;
     while true do
     begin
      repeat
        i:= i + 1;
        ClickMouse (40, 422, true);
        Wait (1000);
        ClickMouse (690, 550, true);
        Wait (80000);
      Until (i= 3);
      ClickMouse (40, 422, true);
      Wait (1000);
      ClickMouse (690, 550, true);
      Wait (60000);
      ClickMouse (40, 440, true);
      Wait (1000);
      ClickMouse (690, 529, true);
      Wait(20000);
    end;
end.[/scar]

Freddy1990.com

Video Game point and click...over and over
« on: July 15, 2010, 10:28:58 am »