Well from a first glance, that script shouldn't compile, as you've got an "end." instead of "end;" in the middle of a script. So try this:
SCAR Code:
program New;
{.include SRL\SRL.scar}
var
X, Y: Integer;
begin
MouseSpeed:= 20;
if (FindColorSpiralTolerance(x, y,3626055, 0, 0, 600, 300, 5)) then
begin
Mouse(x, y, 5, 5, True); //ALWAYS have randomness
end else
begin
WriteLn('Not Found');
Wait(200 + Random(150))//Randomness
if (FindColorSpiralTolerance(x, y,1852749, 0, 0, 600, 300, 5)) then
begin
Mouse(x, y, 5, 5, true);
end else
WriteLn('Not Found')
end;
end.
I think that should run.