Jump to content

Walk to Bank and Banking method


Prolax

Recommended Posts

http://osbot.org/forum/topic/100862-bank-closest-to-entity/  that will get the closest bank to your player, or you can hardcode one in instead either way.

 

and then once you have that you can do:

if(!currentBank.contains(myPlayer().getPosition()){
getWalking().webWalk(currentBank);
} else {
if(!getBank().isOpen()){
getBank().open();
new ConditionalSleep(2500, 3000){
@Override
public boolean condition(){
return getBank().isOpen();
}
}.sleep();
} else {
//withdraw stuff etc.

}
}
Edited by LoudPacks
  • 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...