Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public boolean checkIfOresEmpty() {
  2.         if(objects.getNearest(3400) == null){
  3.             walking.walkTileMM(ROCK_2);
  4.             if(objects.getNearest(emptyRockID) == null){
  5.                 walking.walkTileMM(ROCK_3);
  6.                 if(objects.getNearest(emptyRockID) == null){
  7.                     return true;
  8.                 }
  9.             }
  10.         }
  11.         return false;
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement