Hi,
I'm Having Trouble Using The 'Option2' Procedure, Infact I'm Not Really Sure If This Is The Procedure I Should Be Using,
SCAR Code:
Procedure FindSeeds;
var
rx, ry: Integer;
begin
row := 1;
rx := 35 + (col * 47);
ry := 27 + (row * 38);
begin
MMouse(rx, ry, 4, 4);
wait(500+random(500))
begin
if (Option2('Withdraw 1 Potato')) then
begin
Mouse(rx, ry, 4 ,4, false)
ChooseOption(rx, ry, 'Withdraw All');
CloseBank;
end
else
if(col <= 7) then
begin
col:= col + 1;
FindSeeds;
end
else
col:= 1;
FindSeeds;
end;
end;
end;
That Is Part Of My Auto Farmer I'm Making (Yes A Farmer Lol) But This Part Is Meant To Search The Bank, Row One, Then Column One To Eight Until It Finds The Potatoe Seeds (In This Case) But All It Does Is Go Over The First Row Of The Bank, So I'm Persuming That The 'Option2' Part Isn't Working, Any Help Is Greatful.
Thanks All
