blahs44

Untitled

Sep 28th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.26 KB | None | 0 0
  1. private void AntiBan() throws InterruptedException {
  2.         switch (random(1, 500)) {
  3.         case 1:
  4.             this.client.rotateCameraPitch(50 + random(40));
  5.         case 2:
  6.             this.client.rotateCameraToAngle(200 + random(150));
  7.         case 3:
  8.             this.client.rotateCameraToAngle(200 + random(150));
  9.             this.client.rotateCameraPitch(50 + random(40));
  10.         case 4:
  11.             openTab(Tab.SKILLS);
  12.             sleep(800 + random(500));
  13.             if (random(0, 2) == 1) {
  14.                 if (random(0, 12) != 1) {
  15.                     client.moveMouse(new RectangleDestination(550, 210, 175,
  16.                             210), false);
  17.                     sleep(1500 + random(700));
  18.                 } else {
  19.                     client.moveMouse(
  20.                             new RectangleDestination(550, 425, 120, 25), false);
  21.                     sleep(1800 + random(700));
  22.                 }
  23.             }
  24.         case 5:
  25.             for (int i = 0; i < Tab.values().length; i++) {
  26.                 if (random(1, 50) == 1) {
  27.                     openTab(Tab.values()[i]);
  28.                     sleep(1500 + random(5000));
  29.                     break;
  30.                 }
  31.             }
  32.         case 6:
  33.             moveMouseOutsideScreen();
  34.             sleep(random(5000, 15000));
  35.         case 7:
  36.             openTab(Tab.MAGIC);
  37.             sleep(1000 + random(1000));
  38.             for (int i = 0; i < Spell.values().length; i++) {
  39.                 if (random(1, 100) == 1) {
  40.                     magicTab.hoverSpell(Spell.values()[i]);
  41.                     sleep(1500 + random(500));
  42.                     break;
  43.                 }
  44.             }
  45.         }
  46.         random(100, 500);
  47.         openTab(Tab.INVENTORY);
  48.     }
Advertisement
Add Comment
Please, Sign In to add comment