April 4, 201510 yr In case your bank interaction misclicks ^^ //close collectionbox (by Botre) RS2Widget collectionBox = getWidgets().get(402, 2, 11); if (collectionBox != null && collectionBox.isVisible()) { collectionBox.interact("Close"); } And this one by @Novak //close noticeboard (by Novak) RS2Widget noticeBoard = script.getWidgets().get(220, 16); if(noticeBoard != null && noticeBoard.isVisible()) { noticeBoard.interact("Close"); } Edited April 19, 201510 yr by Botre
April 18, 201510 yr just to add to this, i notice sometimes if the camera is just right it will open the notice boards that some banks have too. use this to close: //close noticeboard RS2Widget noticeBoard = script.getWidgets().get(220, 16); if(noticeBoard != null && noticeBoard.isVisible()) { noticeBoard.interact("Close"); }
April 19, 201510 yr Author just to add to this, i notice sometimes if the camera is just right it will open the notice boards that some banks have too. use this to close: //close noticeboard RS2Widget noticeBoard = script.getWidgets().get(220, 16); if(noticeBoard != null && noticeBoard.isVisible()) { noticeBoard.interact("Close"); } Yeah, noticed this happens a lot in the fally east bank. Added to OP
Create an account or sign in to comment