ABC!
06-09-2012, 09:04 AM
So I am making my first script and am using DTM's to walk to the bank, but as soons as it starts the WalkToBank Procedure it exectues and I get the error message:
The Following DTM's Were not freed: [2]
Any help, greatly appreciated!
Procedure WalkToBank;
var
AreaOne,x,y : Integer;
begin
FindNormalRandoms
If (InvFull) then
begin
AreaOne := DTMFromString('mggAAAHicY2NgYNjAysCwGIh3AfEeVgh/IRAbMDIwaACxGhAbArElEFsAcUC0JoNPuDqDV7gsg1KUCENArD yDo7cSw38G7IARB4YAALWuCtA=');
if FindDTM(AreaOne,x, y, 1, 1, 200, 200) then
begin
Mouse(x, y, 0, 0, true);
writeln('Currently: Walking To Bank - Phase 1!');
end;
end;
end;
The Following DTM's Were not freed: [2]
Any help, greatly appreciated!
Procedure WalkToBank;
var
AreaOne,x,y : Integer;
begin
FindNormalRandoms
If (InvFull) then
begin
AreaOne := DTMFromString('mggAAAHicY2NgYNjAysCwGIh3AfEeVgh/IRAbMDIwaACxGhAbArElEFsAcUC0JoNPuDqDV7gsg1KUCENArD yDo7cSw38G7IARB4YAALWuCtA=');
if FindDTM(AreaOne,x, y, 1, 1, 200, 200) then
begin
Mouse(x, y, 0, 0, true);
writeln('Currently: Walking To Bank - Phase 1!');
end;
end;
end;