well yes and no because, if you are mining a rock and want to mine the closest one you would use findcolorspiral but that sometimes leads to you clicking on the ores you have just dropped so i normally do this in a mining procedure:
SCAR Code:
if FindColorSpiralTolerance(Rx,Ry,RClr,MSx1,MSy1,MSx2,MSy2,ClrTol) then
begin
MMouse(Rx,Ry,0,0);
wait(100);
if IsUpText('ine') then
begin
Mouse(Rx,Ry,0,0,True);
end
else
begin
if FindColorTolerance(Rx,Ry,RClr,MSx1,MSy1,MSx2,MSy2,ClrTol) then
begin
MMouse(Rx,Ry,0,0);
wait(100);
if IsUpText('ine') then
begin
Mouse(Rx,Ry,0,0,true);
end;
end;
end;
end;