You left ur acct info in the script. Looks fake though just checking with u in case they are real.
Also line 461:
Simba Code:
if Length(ATPA) < 1 then
begin
writeln('Walk to flax');
end else
//blabla
until InvFull;
So if Length(ATPA) < 1 you will not be doing anything (other than searching again which will probably return the same result), and hence will be stuck in the loop if InvFull is false.
Simba Code:
Procedure SlwDn;
begin
MouseSpeed := 15;
end;
Procedure FreeAllDTM;
begin
FreeDTM(Flax);
end;
Function NotMoving :Boolean;
begin
Result := not IsMoving;
end;
Its pretty pointless to create a procedure/function that only contain 1 procedure/function, you can just call it directly.
Haven't look through the rest but looks neat