blahs44

Untitled

Sep 24th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.34 KB | None | 0 0
  1. public int onLoop() {
  2.  
  3. AntiBan();
  4. return 250 + random(50);
  5.  
  6.     }
  7.  
  8. public void AntiBan() throws InterruptedException
  9.   {
  10.     int randomNum = random(1, 500);
  11.  
  12.     if (randomNum == 1) {
  13.       this.status = "Anti-Ban";
  14.       this.client.rotateCameraPitch(random(35, 60));
  15.     } else if (randomNum == 33) {
  16.       this.status = "Anti-Ban";
  17.       this.client.rotateCameraToAngle(random(100, 350));
  18.     } else if (randomNum == 57) {
  19.       this.status = "Anti-Ban";
  20.       openTab(Tab.SKILLS);
  21.       if (this.client.getInterface(320).getChild(127).isVisible()) {
  22.         this.client.getInterface(320).getChild(127).hover();
  23.         sleep(random(1200, 1500));
  24.         openTab(Tab.INVENTORY);
  25.       }
  26.     } else if (randomNum == 437) {
  27.       this.status = "Anti-Ban";
  28.       this.client.rotateCameraPitch(random(15, 50));
  29.     } else if (randomNum == 43) {
  30.       this.status = "Anti-Ban";
  31.       this.client.rotateCameraPitch(random(84, 100));
  32.     } else if (randomNum == 78) {
  33.       this.status = "Anti-Ban";
  34.       this.client.rotateCameraPitch(random(5, 19));
  35.     } else if (randomNum == 443) {
  36.       this.status = "Anti-Ban";
  37.       moveMouseOutsideScreen();
  38.     } else if (randomNum == 13) {
  39.       this.status = "Anti-Ban";
  40.       this.client.rotateCameraPitch(random(67, 90));
  41.       this.client.rotateCameraToAngle(random(43, 68));
  42.     }
  43.   }
Advertisement
Add Comment
Please, Sign In to add comment