I posted this in Mat's WithdrawBankS suggestion, but I figured I would just make a separate suggestion thread for it.
Simba Code:function ExistsBankItem(Slot: Integer): Boolean;
var
x, y: Integer;
Box: TBox;
begin
if not BankScreen then
Exit;
Box := BankIndexToMSBox(Slot);
Result := FindColor(x, y, srl_outline_black, Box.x1, Box.y1, Box.x2, Box.y2);
end;
