Jeune Padawan Posted March 5, 2017 Share Posted March 5, 2017 Hey. Basically, I wanted to try implementing an "AntiBan" to my script. I saw this https://github.com/Elmling/OSBot-API/blob/master/API/AntiBan.java I made a new class, but how do I call this : I want to call this in my main class "SimpleWoodcutter". Also, where should I call it? Like when I'm cutting a tree? I tried a few things like "AntiBan.doRandomAntiBan();" but it didn't work lol Is it a good thing to implement this? Thanks Quote Link to comment Share on other sites More sharing options...
DrDu Posted March 5, 2017 Share Posted March 5, 2017 @Lemons Quote Link to comment Share on other sites More sharing options...
Container Posted March 5, 2017 Share Posted March 5, 2017 2 minutes ago, Jeune Padawan said: Hey. Basically, I wanted to try implementing an "AntiBan" to my script. I saw this https://github.com/Elmling/OSBot-API/blob/master/API/AntiBan.java I made a new class, but how do I call this : I want to call this in my main class "SimpleWoodcutter". Also, where should I call it? Like when I'm cutting a tree? I tried a few things like "AntiBan.doRandomAntiBan();" but it didn't work lol Is it a good thing to implement this? Thanks You need to make an instance of that class in the main class. You can do this with <ClassName> <variableName> = new <ClassName>() Example could be AntiBan antiBan = new AntiBan(); Then you can do antiBan.doRandomAntiBan(); in the main class. I hope this helped you! Quote Link to comment Share on other sites More sharing options...
Explv Posted March 5, 2017 Share Posted March 5, 2017 5 minutes ago, Jeune Padawan said: Hey. Basically, I wanted to try implementing an "AntiBan" to my script. I saw this https://github.com/Elmling/OSBot-API/blob/master/API/AntiBan.java I made a new class, but how do I call this : https://www.tutorialspoint.com/java/java_object_classes.htm 2 Quote Link to comment Share on other sites More sharing options...
Eliot Posted March 5, 2017 Share Posted March 5, 2017 +1 to learning a bit more Java. But container answered your question. Quote Link to comment Share on other sites More sharing options...
Container Posted March 5, 2017 Share Posted March 5, 2017 (edited) 12 minutes ago, Explv said: https://www.tutorialspoint.com/java/java_object_classes.htm Would also really recommend you to check this out, OP. Classes are really an essential part of Java. Edited March 5, 2017 by Container Quote Link to comment Share on other sites More sharing options...
Team Cape Posted March 6, 2017 Share Posted March 6, 2017 1 hour ago, Explv said: https://www.tutorialspoint.com/java/java_object_classes.htm 1 hour ago, Container said: Would also really recommend you to check this out, OP. Classes are really an essential part of Java. agreed. OO is incredibly important. definitely read. Quote Link to comment Share on other sites More sharing options...