Jump to content

Slow/inaccurate banking


MightySir2

Recommended Posts

Takes bot a while to withdraw items and closes windows without withdrawing.

Any solutions?huh.png

 if (inventory.isEmptyExcept(995))
			return State.BANK;


case BANK:
		    NPC banker = npcs.closest("Banker");
			 
				  banker.interact("Bank");
				  sleep(random(500, 700));
				bank.withdrawAll(1739);  
				break;

Edited by MightySir2
Link to comment
Share on other sites

 if (inventory.isEmptyExcept(995))
			return State.BANK;


case BANK:
		    NPC banker = npcs.closest("Banker");
			 
				  banker.interact("Bank");
				  sleep(random(500, 700));
				bank.withdrawAll(1739);  
				break;

case BANK:
         if(bank.isOpen()){
            bank.withdrawAll(1739);
            //sleep
          }else{
            bank.Open();
            //sleep
            } 	

forgot the break;... eh...

 

Edited by Isolate
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...