HarryJames
10-29-2008, 05:06 PM
program UCAuto;
var x,y,Bitmap,clicks:integer;
procedure DeclareBMPS;
begin
Bitmap := BitmapFromString(15, 5, 'beNozj1q9erWOOQoJQVhFCC' +
'pGA0SajCZIoTOQXaIDAOzxYSQ=');
end;
procedure ClickBMPS;
begin
movemousesmooth(x,y)
clickmouse(x,y,true)
end;
Procedure FindBMPS;
begin
if(FindBitmap(Bitmap,x,y))then
ClickBMPS;
clicks:=clicks + 1;
Writeln('Total clicks = ' + IntToStr(clicks) + '.')
end;
begin
repeat
DeclareBMPS;
FindBMPS;
wait(80000)
until(false)
end.
After about 4 clicks it just goes to the top right of the screen. Its for a game called unification wars and has an antiscript. Sometimes it just replacesthe button with a new one saying click here if your a script. That stops just static clicking...
var x,y,Bitmap,clicks:integer;
procedure DeclareBMPS;
begin
Bitmap := BitmapFromString(15, 5, 'beNozj1q9erWOOQoJQVhFCC' +
'pGA0SajCZIoTOQXaIDAOzxYSQ=');
end;
procedure ClickBMPS;
begin
movemousesmooth(x,y)
clickmouse(x,y,true)
end;
Procedure FindBMPS;
begin
if(FindBitmap(Bitmap,x,y))then
ClickBMPS;
clicks:=clicks + 1;
Writeln('Total clicks = ' + IntToStr(clicks) + '.')
end;
begin
repeat
DeclareBMPS;
FindBMPS;
wait(80000)
until(false)
end.
After about 4 clicks it just goes to the top right of the screen. Its for a game called unification wars and has an antiscript. Sometimes it just replacesthe button with a new one saying click here if your a script. That stops just static clicking...