Jump to content

Anti-Ban yey or nah?


Recommended Posts

Posted

Having antiban as something like this:

 

is this worth including or not, i.e will it make the account more or less detectable in people's opinions?

public class AntiBan {
    private MethodProvider mp;
    private Random random;

    public AntiBan(MethodProvider mp) {
        this.mp = mp;
        this.random = new Random();
    }

    public void randomInputEvent() {
        try {
            int rN = this.random.nextInt(4);
            switch (rN) {
                case 0:
                    this.mp.getCamera().movePitch(this.random.nextInt(360));
                    this.mp.getCamera().moveYaw(22 + this.random
                            .nextInt(22 + this.random.nextInt(45)));
                    break;
                case 1:
                    this.mp.getCamera().movePitch(this.random.nextInt(360));
                    break;
                case 2:
                    this.mp.getMouse().move(this.random.nextInt(760), this.random.nextInt(500));
                    break;
                case 3:
                    moveMouseRandomly(1 + this.random.nextInt(6));
                case 4:
                    this.mp.getMouse().moveOutsideScreen();
            }
        } catch (Exception e) {
        }
    }

    public void randomInterfaceEvent(Skill currentSkill) {
        try {
            int rN = this.random.nextInt(6);
            switch (rN) {
                case 0:
                    this.mp.getSkills().hoverSkill(currentSkill);
                    break;
                case 1:

                    this.mp.getTabs().open(Tab.ATTACK);

                    break;
                case 2:
                    this.mp.getTabs().open(Tab.FRIENDS);
                    break;
                case 3:
                    this.mp.getTabs().open(Tab.SKILLS);
                case 4:
                    this.mp.getTabs().open(Tab.SETTINGS);
                case 5:
                    this.mp.getTabs().open(Tab.QUEST);
                case 6:
                    this.mp.getTabs().open(Tab.EQUIPMENT);
            }
        } catch (Exception e) {
        }
    }

    public void moveMouseRandomly(int numberOfPositions) {
        Point[] pointArray = new Point[numberOfPositions];
        for (int i = 0; i < pointArray.length; i++) {
            pointArray[i] = new Point(-10 + this.random.nextInt(850), -10 + this.random.nextInt(550));
        }
        for (int i = 0; i < pointArray.length; i++) {
            this.mp.getMouse().move(pointArray[i].x, pointArray[i].y);
   try{
       sleep( 600);
   }catch (Exception e){

   }
        }
    }
}
Posted

If you are using it on a script for the sdn don't advertise it as anti-ban.   In my personal opinion it is worth it, I have seen faster bans on scripts that don't have any.  I have also used a flax spinner with no anti-ban for over 60 hours straight with no ban though, so it's hard to say if it's useful at all.  On valuable accounts I prefer some type of antiban to be included, but my throwaways using moneymaking scripts it is pretty pointless.

Posted

other stuff is passable, but this:

    public void moveMouseRandomly(int numberOfPositions) {
        Point[] pointArray = new Point[numberOfPositions];
        for (int i = 0; i < pointArray.length; i++) {
            pointArray[i] = new Point(-10 + this.random.nextInt(850), -10 + this.random.nextInt(550));
        }
        for (int i = 0; i < pointArray.length; i++) {
            this.mp.getMouse().move(pointArray[i].x, pointArray[i].y);
   try{
       sleep( 600);
   }catch (Exception e){

   }
        }
    }

definitely no. saw it in your warriors script and was wtfing hard

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...