Hi guys. I got this fishing procedure for my barbarian fishing script.
now I got it to wait 10000 ms after clicking a fish spot but the timer keeps going after the spot is gone. I need it to directly search for a new fishing spot when the old one is gone. How can I do this? (Kinda noob but just started scripting).Code:procedure Fish; var x, y, i: integer; begin if (FindObjCustom(x, y, ['ure', 'ishin', 'ot'], [14597535, 15123609, 14794914, 14858129, 13216647, 14597268, 15123625, 14398100, 14729121], 3) ) then begin wait(1000 + random(500)); mouse(x,y,1,1,1) wait(10000 + random(100)); end else end;


Reply With Quote


