Ok so im trying to skip a box when fishing as i want cage fishing and not net fishing. Ive have tryed to make a box and skip it, but it does not work 
Simba Code:
Function FindFishingSpotTPA:Boolean;
Var
MyTPA : TPointArray;
PointT : TPoint;
x,y,i,trys : Integer;
NotBox : TBox;
Begin
If Not LoggedIn Then Exit;
NotBox := IntToBox(0,0,0,0) //Just to reset it
Repeat
SetColorToleranceSpeed(2);
SetColorspeed2Modifiers(0.34,1.18);
FindColorsSpiralTolerance(x,y,MyTPA,11576479, MSx1, MSy1, MSx2, MSy2, 4);
Inc(Trys);
Wait(RandomRange(5,95));
Until (Length(MyTPA) > 0) Or (Trys >= 12)
If Trys >= 12 Then
Begin
writeln('Not found colour exiting :(');
Result := False
Exit;
End;
For i := 0 to High(MyTPA)Do
Begin
PointT := MyTPA[i]
If Not PointInBox(PointT,NotBox) Then//X/Y in NotBOX which is a tbox
MMouse (PointT.x, PointT.y, RandomRange(-5,5), RandomRange(-5,5));
If WaitUptext('age',4500) then
Begin
SetColorToleranceSpeed(1);
GetMousePos(x, y);
Result := True
If Random(30) = 5 Then
Begin
Mouse(x, y, 0, 0, False);
WaitOption('ag',4500);
End Else Mouse(x,y,0,0,True);
Exit;
End Else Begin
If IsUpText('et') Then
Begin
NotBox := IntToBox(x-15,y-15,x+15,y+15)
writeln('We have found a net fishing spot now skiping box ');
End;
End;
Wait(RandomRange(250,999));
End;
End;
Thanks