scriptersteve Posted January 14, 2018 Share Posted January 14, 2018 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){ } } } } Quote Link to comment Share on other sites More sharing options...
ryan1169 Posted January 14, 2018 Share Posted January 14, 2018 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. Quote Link to comment Share on other sites More sharing options...
Butters Posted January 14, 2018 Share Posted January 14, 2018 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: Quote Link to comment Share on other sites More sharing options...
Keven Posted January 14, 2018 Share Posted January 14, 2018 it useless fren Quote Link to comment Share on other sites More sharing options...
Team Cape Posted January 14, 2018 Share Posted January 14, 2018 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 Quote Link to comment Share on other sites More sharing options...
scriptersteve Posted January 14, 2018 Author Share Posted January 14, 2018 haha ok :), thanks for input Quote Link to comment Share on other sites More sharing options...
Apaec Posted January 14, 2018 Share Posted January 14, 2018 No-one really knows what does and doesn't help. If it makes you feel better with that in, the keep it! 1 Quote Link to comment Share on other sites More sharing options...
the most wanted Posted January 17, 2018 Share Posted January 17, 2018 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. Quote Link to comment Share on other sites More sharing options...
Alek Posted January 17, 2018 Share Posted January 17, 2018 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. Quote Link to comment Share on other sites More sharing options...