its a simple problem. The text finding has to be loaded by using P07 custom SRL setup. Otherwise it will mess up with the fonts.
Try this:
Simba Code:
program new;
{$i SRL/SRL.simba}
{$I P07Include.Simba}
procedure FindFlax;
var
tmpCTS, i, x, y, counter, r, l: integer;
FlaxTPA: TPointArray;
begin
tmpCTS := GetToleranceSpeed;
SetColorToleranceSpeed(2);
SetToleranceSpeed2Modifiers(0.13, 1.22);
FindColorsTolerance(FlaxTPA, 608516, MSX1, MSY1, MSX2, MSY2, 10);
SetColorToleranceSpeed(tmpCTS);
SetToleranceSpeed2Modifiers(0.02, 0.02);
L := High(FlaxTPA) marktime(counter);
for i := 0 to L do
begin
r := random(L);
Wait(RandomRange(60, 200));
mmouse(FlaxTPA[r].x, FlaxTPA[r].y, 2, 2);
if (P07_IsUpTextMultiCustom(['fla'])) then
begin
writeln('UpText found!');
Break;
end;
if timefrommark(counter) > 3000 then
begin
writeln('We failed to find the flax!');
Terminatescript;
end;
end;
writeln('We found the flax!');
Mouse(FlaxTPA[r].x, FlaxTPA[r].y, 1, 1, 1);
end;
begin
SetupP07Include;
FindFlax;
end.