Change the coords and colours and it should work. Perhaps even use a different CTS. I did this based off that picture on the OP.
Simba Code:
{$I SRL/SRL.Simba}
{$I SRL/SRL/Misc/Debug.Simba}
Function GetBoxMinimap: TBox;
var
TPA: TPointArray;
ATPA: T2DPointArray;
Begin
FindColorsTolerance(TPA, 7433839, MMBox.X1, MMBox.Y1, MMBox.X2, MMBox.Y2, 25);
If (Length(TPA) < 1) Then Exit;
ATPA := FloodFilLTPA(TPA);
If (Length(ATPA) < 1) Then Exit;
SortATPAFromFirstPoint(ATPA, Point(300, 300)); //Middle Of MM.
Result := GetTPABounds(ATPA[0]);
End;
var
F: TBox;
begin
SetupSRL;
F := GetBoxMinimap;
MMouse(F.X1, F.Y1, 0, 0);
Wait(1500);
MMouse(F.X2, F.Y2, 0, 0);
end.