When there is no scroll bar at the side it doesn't like to work since the colour it is trying to find is not there. This is Rev #32. It works fine if there is a scroll bar but just holds the mouse at the one point if there is no scroll bar. Just thought someone would like to know.
Xcan
edit: I changed FixBank to
SCAR Code:
procedure FixBank;
begin
if BankScreen then
if (GetColor(489, 101) <> 1316634) and (GetColor(489,100) = 657930) then
begin
Mouse(485, 102, 7, 10, True);
while GetColor(489, 101) <> 1316634 do
Wait(20);
Wait(100 + Random(200));
end;
end;
and it was working for me.