January 14, 20188 yr 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){ } } } }
January 14, 20188 yr 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.
January 14, 20188 yr This is not antiban, this is: 1) Moving mouse around 2) Moving camera around 3) Opening tabs To my mind, best antiban is in botting behaviour, like taking breaks and what not. A good read:
January 14, 20188 yr 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
January 14, 20188 yr No-one really knows what does and doesn't help. If it makes you feel better with that in, the keep it!
January 17, 20188 yr Even if it didn't help, at least it won't make it worse.. I mean if it didn't come to a use so just put it. Pm I have pro antiban methods that I have been using for 10 days now and didn't get banned.
January 17, 20188 yr This is not a scripting question, this is a question which nobody can answer except for the reversing experts over in the Botting and Bans section. Moved.
Create an account or sign in to comment