blahs44

Untitled

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