Hey I got a problem with powerfisher, once it has found the fishingspot it clicks
the spot but doesnt wait enough and clicks to another spot. I would like to make it so that it fishes a full load from the first spot or if the spot vanishes it clicks to second spot, but dunno how.. could any1 help?
heres the procedure:
SCAR Code:
procedure FindFish;
begin
repeat
if FindObj(x,y,'age',FishSpotColor,5)or
FindObj(x,y,'net',FishSpotColor,5)or
FindObj(x,y,'ure',FishSpotColor,5)
then
MMouse(x,y,0+random(2),0+random(3));
Mouse(x,y,0,0+random(3),true);
DoRandoms;
HandleWhirlPool;
until(InvFull);
end;