I'm trying to make the script hover over the pool which it does right click then select cage fishing and possible ignore shark pools if possible.
It currently hovers over the pool right clicks and hangs there.
Procedure Findspot;
begin
if(FindColorSpiralTolerance(x, y, 14728868, MSX1, MSY1, MSX2, MSY2, 5))then
begin
MMouse(RandomRange(X - 5, X + 5), RandomRange(y - 5, y + 5), 0, 0);
ClickMouse2(mouse_right);
if P07_IsUpTextMultiCustom(['Cage']) then
Writeln('We Found Some Fish');
wait (75+random(100));
ClickMouse2(mouse_left);
PastInvCounter := P07_InvCount;
End;
End;



Reply With Quote


