March 5, 20178 yr 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
March 5, 20178 yr 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!
March 5, 20178 yr 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
March 5, 20178 yr 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, 20178 yr by Container
March 6, 20178 yr 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.
Create an account or sign in to comment