first go to SRL/SRL/CORE/Bank.scar and find the Bankscreen function.
repleace the number 185, with 184.
also, in the script (so it doesn't stop when lvl), locate the findfastrandoms, and replace it with this
SCAR Code:
Function FindFastRandoms: Boolean; // By WT-Fakawi.
var
i: Integer;
begin
for i:=1 to 11 do
begin
case I of
1: If FindDead then
Result := True;
2: If FindMod then
Result := True;
3: If FindMime then
Result := True;
4: If FindMaze then
Result := True;
5: If FindQuiz then
Result := True;
6: If FindDemon then
Result := True;
7: if NoGameTab then
begin
Result := True;
Players[CurrentPlayer].loc := 'No GameTab';
Logout;
Exit;
end;
8 : If RC Then Result := True;
9: If FindTalk Then Result := True;
10: If HandleTrade Then Result := True;
11: ClickToContinue;
End;
Wait(1);
end;