blahs44

Untitled

Sep 24th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.08 KB | None | 0 0
  1.  public int worldHop() throws InterruptedException {
  2.  
  3.                 int randomWorld = random(301, 378);
  4.  
  5.                 if ((!(randomWorld == 307)) && (!(randomWorld == 315))
  6.                                 && (!(randomWorld == 323)) && (!(randomWorld == 324))
  7.                                 && (!(randomWorld == 331)) && (!(randomWorld == 332))
  8.                                 && (!(randomWorld == 347)) && (!(randomWorld == 348))
  9.                                 && (!(randomWorld == 355)) && (!(randomWorld == 356))
  10.                                 && (!(randomWorld == 363)) && (!(randomWorld == 364))
  11.                                 && (!(randomWorld == 371)) && (!(randomWorld == 372))
  12.                                 && (!(randomWorld == 308)) && (!(randomWorld == 316))) {
  13.  
  14.                         worldHopper.hopWorld(randomWorld);
  15.  
  16.                 } else {
  17.  
  18.                         randomWorld = random(301, 378);
  19.  
  20.                 }
  21.  
  22.                 return 1000;
  23.         }
  24.  
  25.         public void onLogin() {
  26.  
  27.                 this.state = State.BUY;
  28.  
  29.         }
Advertisement
Add Comment
Please, Sign In to add comment