blahs44

Untitled

Sep 26th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. public int onLoop() throws InterruptedException {
  2.  
  3.         if ((this.client.getRunEnergy() > 40) && (this.state != State.MINE)) {
  4.             try {
  5.                 setRunning(true);
  6.             } catch (Exception localException) {
  7.             }
  8.         }
  9.  
  10.         if (this.state == State.TOBANK) {
  11.             return toBank();
  12.         } else if (this.state == State.TOMINE) {
  13.             return toMine();
  14.         } else if (this.state == State.MINE) {
  15.             return mine();
  16.         } else if (this.state == State.BANK) {
  17.             return bank();
  18.         }
  19.  
  20.         AntiBan();
  21.         return 250 + random(50);
  22.  
  23.     }
Advertisement
Add Comment
Please, Sign In to add comment