Jump to content

How to implement a method from another class?


Recommended Posts

Posted

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 : 

NK0HcD9.png

 

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 :)

Posted
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 : 

NK0HcD9.png

 

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!

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...