Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 12th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public boolean isatbank1() {
  2.                 if (DraynorBank.contains(getMyPlayer().getLocation())) {
  3.                         return true;
  4.                 } else {
  5.                         if (DraynorBank.getNearestTile(getMyPlayer().getLocation())
  6.                                         .isValid()) {
  7.                                 return walking.walkTileMM(DraynorBank
  8.                                                 .getNearestTile(getMyPlayer().getLocation()));
  9.  
  10.                         } else {
  11.                                 return false;
  12.                         }
  13.                 }
  14.         }