May 13, 20169 yr Traditional banking using RS2Object. RS2Object bankBooth = objects.closest("Bank booth"); //Create an RS2Object looking for "Bank booth" if (bankBooth != null) { //Null check if (bankBooth.interact("Bank")) { //If the action was successful (true) sleep(600); //sleep //bank is open... } } Improved way to open the bank using the Bank API if (!getBank().isOpen()){ //If the bank is not open getBank().open(); //Opens bank chests, booths, etc. //sleep } else { //Bank is open..do something } Edited May 13, 20169 yr by Sinatra
May 13, 20169 yr Author Traditional banking using RS2Object. RS2Object bankBooth = objects.closest("Bank booth"); //Create an RS2Object looking for "Bank booth" if (bankBooth != null) { //Null check if (bankBooth.interact("Bank")) { //If the action was successful (true) sleep(600); //sleep //bank is open... } } Improved way to open the bank using the Bank API if (!getBank().isOpen()){ //If the bank is not open getBank().open(); //Opens bank chests, booths, etc. //sleep } else { //Bank is open..do something } Thank you!! Worked perfect. Any chance you're online atm and would be willing to look over my script over PM? I got it to do 80% of what I want, but one part is stumping me
May 13, 20169 yr Thank you!! Worked perfect. Any chance you're online atm and would be willing to look over my script over PM? I got it to do 80% of what I want, but one part is stumping me Dont have time atm. Work in the AM
Create an account or sign in to comment