program Zurroball;
//1) Start Zurroball in Low-Resolution and Low-Quality
//2) If you use windows xp or windows 2k you can set the priority of the browser to low from the task manager.
//If you dont know what i am talking about. or you use windows 98. SKIP THIS STEP AND SET COUNTER TO SOMETHING LIKE 9999999999.
//When you set the priority to low... The game is supposed to freeze so SCAR click 50-200 at a single time...
//Default Hotkeys... To START use Ctrl + Alt + R
// To STOP use Ctrl + Alt + s
const
counter=35; //Enter a number. It will click that many times on the ball.
var x,y,clicks :integer;
procedure do_it;
begin
if FindColorTolerance(x,y,16763904,26,133,362,274,50) then
begin
clickmouse(x,y,true)
clicks:= (clicks+1)
writeln(inttostr(clicks))
end else
wait(50)
end;
begin
clicks:=0;
repeat
do_it;
until(clicks >= counter)
end.
was created in 5 mins... Report and bugs.