If you're bank is small and does not use more than the first "page" then the scroll bar doesn't show up... dunno if this is an update or if it's been like this for a while, but an easy fix is this:
PHP Code:procedure FixBank;
begin
if BankScreen then
begin
if GetColor(489, 101) = 2830904 then exit; { <-- Added this }
if GetColor(489, 101) <> 1316634 then
begin
Mouse(485, 102, 7, 10, True);
while GetColor(489, 101) <> 1316634 do
Wait(20);
Wait(100 + Random(200));
end;
end;
end;




Reply With Quote






