are you trying to just test it or are you actually thinking about using it?
I would advise you to not use this script due to the fact that there is no multiplayer, failsafes, antirandoms, antiban, or much of anything really...
But ask and you shall receive...
SCAR Code:
program New;
{.include srl/srl.scar}
const
GuardColor = 929404;
Function FindGuard: Boolean;
var
x,y: integer;
begin
if findcolortolerance(x,y,GuardColor,0,0,511,328,10) then
begin
result := true;
mouse(x,y,5,5,true);
wait(100 + random(200));
writeln('Found monster');
wait(3000 + random(1000));
end;
end;
begin
setupsrl;
mousespeed := 13;
repeat
FindGuard;
until(False);
end.