ok i've made my auto fisher now and it looks good,it cuts down a tree makes a fire and then he should cook.but he only moves his mouse to the fishies and cliks right button but doesn't click on use.and if he finds the fire he moves his mouse but also doesn't click on on use.I'l post what i have
SCAR Code:
procedure CookThem;
var ix,iy,fx,fy:integer;
begin
Mouse(lx+5,ly+2,3,2,true);
wait(250+random(75));
MouseItem(4,true);//thats the thinderbox
repeat
wait(1500+random(250));
until FindColorSpiralTolerance(fx,fy,FireColor,250,145,330,180,15)
if FindColorTolerance(ix,iy,5858460,553,207,744,463,10) then //Color Picked: 13421778 at (595, 366)
begin
Mouse(ix,iy,5,5,false);
ClickOption('Use',1);
Mouse(fx,fy,2,2,false);
ClickOption('Use',1);
wait(5000);
end
end;
all help is appreciated...