Jump to content

How to implement a method from another class?


Jeune Padawan

Recommended Posts

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

Link to comment
Share on other sites

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!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...