Hy yes I mean InvFull but it uses the invintory game tab which until SRL updates or I get the patch isn't working. So I use that instead.
I did some debugging and I fixed one problem but I have found another. If I were to start the script it would open up the runescape window(activateclient) but then not click until I click in the scar screen and then into the RS screen... here is what I use.
SCAR Code:
procedure ChopOaks;
Begin
FoundTree := 0;
WriteLn('Starting Loop');
repeat
if FindBitMapIn(OakLog, tx, ty, 686, 435, 726, 460) then
break;
If(FindObjMulti(Tree, Oak1, Oak2, Oak3, 10)) then
begin
getmousepos(tx, ty);
Mouse(tx, ty, 1, 1, True);
WriteLn('Found Tree = 1');
FoundTree := 1;
wait(4000);
Repeat
WriteLn('Waiting');
wait(500 + Random(500));
WriteLn('EndWait');
until Not (FindBitmapin(OakText, tx, ty, 120, 30, 117, 25)) or FindBitMapIn(OakLog, tx, ty, 686, 435, 726, 460);
end;
until FoundTree = 1;
WriteLn('Ending Loop');
end;
oh and here is a report I did.
SCAR Code:
=~=~=~=~=~=~=~=~=~=~=~=
|Worked For : 00:00:00
|Chopped : 0 Oaks
|Made : 0 Gold!!
=~=~=~=~=~=~=~=~=~=~=~=
Starting Loop
Found Tree = 1
Waiting
EndWait
Ending Loop
Starting Loop
Successfully executed
Notice how it ended on Starting Loop, that is where it doesn't click. I waited until my character logged out before I killed the script.