Flawless banking can be incredibly difficult with color though, c0rrupt f1r3. It is definitely possible though. Also, if you change CTS 3 to 2, then it should work for Simba.
Tim0 : For your bug with hovering over the fishing spot, you could try something like
SCAR Code:
function BubblesAC: integer;
begin
// Autocolor for the bubbles in the water
// ACA made one that worked fine for me
end;
function CheckBug: boolean;
var
Colors : TPointArray;
begin
if(IsUpText('Lure'))then
begin
GetMousePos(x, y);
FindColorsTolerance(Colors, BubblesAC, x - 15, y - 15, x + 15, y + 15, 5);
if(Length(Colors) > 5)then
begin
MMouse(x + Random(100), y + Random(100), 3, 3);
Result := True;
end;
end;
end;