e:Slight Change added separate upText.
This Function is used to search for items and return to the original Bank tab after and returns true, if it finds it.
Thanks to Mike (Main) for giving me the idea <3
Simba Code:Function WithDrawBankS(s,uT:String):boolean;
var
bT:integer;
begin
if(not bankScreen)then
Exit;
bT := currentBankTab;
searchBank(s);
MouseBankSlot(1,2);
if(waitUptext(uT,800))then
begin
clickMouse2(true);
result := true;
end;
bankTab(bT);
end;
Mat

