Alright so, I looked at quite a few tutorials, read quite a few posts and i'm still a tad confused.
I have a main class and then I have other classes.
If I'm trying to use methods in my secondary class, it tends to null out, even though methods are available.
Halp pls
package AIO;
public class wc extends AIORuneScape{
int abc = 5;
public void Woodcutting() throws InterruptedException {
sleep(500);
if (npcs.closest("Banker") != null) {
log("test");
}
}
}
This is the secondary class.