when my script gets to banking it opens up the bankscreen then closes it and doesnt deposit.
Script:
SCAR Code:
procedure Banking;
begin
if (InvFull) then
begin
MakeCompass('W')
Wait (300 + random(160));
OpenBankFast('db');
if (PinScreen) then
InPin(YourPin);
if(FindColorSpiral(x, y, 4155248, 547, 206, 734, 464))then
begin
DepositAll;
Banked := True;
if Banked = True then
begin
LoadsNum := LoadsNum + 1;
LoadsNum2 := LoadsNum2 + 1;
ReportVars[1] := ReportVars[1] + 1;
SendSRLReport;
end;
end;
CloseBank;
Wait(150 + random (278));
MakeCompass('S');
end;
end;