Simba Code:
program RobeWithdrawer;
{.include SRL\SRL.simba}
var
Top, Bottom, X, Y:integer;
begin
SetupSRL;
Top:= DTMFromString('mbQAAAHicY2VgYOABYm4gloCyGZBoLiAWhdJyZklAkgkFGzFgAkYsGAwAYPUBaw==');
If FindDTM(Top, X, Y, MSX1, MSY1, MSX2, MSY2) then
WriteLn('We found the top!');
MMouse(X, Y, 7, 7);
If IsUpText('top') then
Mouse(x, y, 0, 0, mouse_Left);
Wait(100);
Mouse(x, y, 0, 0, mouse_Left);
Bottom:= DTMFromString('mbQAAAHicY2VgYGAHYh4g5mCAAEYg5gViNiCWgMqBgLpbHZBkQsFGDJiAEQsGAwBjlQGD');
If FindDTM(Bottom, X, Y, MSX1, MSY1, MSX2, MSY2) then
WriteLn('We found the bottom!');
MMouse(X, Y, 7, 7);
If IsUpText('tom') then
Mouse(x, y, 0, 0, mouse_Left);
Wait(100);
Mouse(x, y, 0, 0, mouse_Left);
end.
You were missing mouse_Left or mouse_Left in your Mouse(). (If you were going to use Mouse)
I just added mouse_Left in there for example.
Second. You had 2 mainloops. Check the difference.
~Home