Can someone please help me make the script im using "Deposit carried items" into the deposit box, as it stand right now it opens the box and doesn't do anything but loop back to where it should go after it banks. I don't know if the method got broken after SRL5 but this is the code that doesn't do what it should:
Simba Code:if FindBox(False) then
begin
FindBox(True);
ChooseOption('posit');
while ((not DepositScreen) and (j < 20)) do
begin
wait(random(500));
j := j + 1;
end;
if (DepositScreen) then
begin
if (PICKAXE_EQUIPPED) then
begin
DepositAll;


Reply With Quote
