Trying to create a basic script to, chop, and the burn the whole inventory of logs. when I use this code, the script wont even start, but if I remove the burnLogs method, it runs fine? also cannot for the life of me figure out how to how the next tree, not asking to be spoonfed, but if someone wants to hop on discord and help me out that would be great!
void cutTree() {
if(!getInventory().isFull()) {
if(!myPlayer().isAnimating() && tree != null) {
tree.interact("Chop Down");
new ConditionalSleep(5000) {
@Override
public boolean condition() throws InterruptedException {
return myPlayer().isAnimating();
}
}.sleep();
}
}
}
void burnLogs() {
if (!"Tinderbox".equals(getInventory().getSelectedItemName())) {
if (getInventory().isItemSelected()) {
getInventory().deselectItem();
} else {
getInventory().interact("Use", "Tinderbox");
}
} else if (getInventory().getItem("logs").interact()) {
new ConditionalSleep(2000) {
@Override
public boolean condition() throws InterruptedException {
return !myPlayer().isAnimating();
}
}.sleep();
}
}