Guest User

Untitled

a guest
Dec 12th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. private void doBankU() {
  2. GameObject stairU = Objects.getNearest(36774);
  3.  
  4. if (Inventory.isFull() && spinArea.contains(Players.getLocal().getLocation())) {
  5. if (stairU != null) {
  6. while (!stairU.isOnScreen()) {
  7. Walking.stepTowards(stairsUpTile);
  8. }
  9. stairU.interact("Climb-Up");
  10. }
  11. }
  12. }
Add Comment
Please, Sign In to add comment