Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private void AntiBan() throws InterruptedException {
- switch (random(1, 500)) {
- case 1:
- this.client.rotateCameraPitch(50 + random(40));
- case 2:
- this.client.rotateCameraToAngle(200 + random(150));
- case 3:
- this.client.rotateCameraToAngle(200 + random(150));
- this.client.rotateCameraPitch(50 + random(40));
- case 4:
- openTab(Tab.SKILLS);
- sleep(800 + random(500));
- if (random(0, 2) == 1) {
- if (random(0, 12) != 1) {
- client.moveMouse(new RectangleDestination(550, 210, 175,
- 210), false);
- sleep(1500 + random(700));
- } else {
- client.moveMouse(
- new RectangleDestination(550, 425, 120, 25), false);
- sleep(1800 + random(700));
- }
- }
- case 5:
- for (int i = 0; i < Tab.values().length; i++) {
- if (random(1, 50) == 1) {
- openTab(Tab.values()[i]);
- sleep(1500 + random(5000));
- break;
- }
- }
- case 6:
- moveMouseOutsideScreen();
- sleep(random(5000, 15000));
- case 7:
- openTab(Tab.MAGIC);
- sleep(1000 + random(1000));
- for (int i = 0; i < Spell.values().length; i++) {
- if (random(1, 100) == 1) {
- magicTab.hoverSpell(Spell.values()[i]);
- sleep(1500 + random(500));
- break;
- }
- }
- }
- random(100, 500);
- openTab(Tab.INVENTORY);
- }
Advertisement
Add Comment
Please, Sign In to add comment