thatst what frosty posted, bot still freezes
the problem is definetly here
switch(getState()) {
case LEVEL:
dialogues.clickContinue();
break;
case CHOP:
tree = objects.closest(willowArea, "Willow");
tree = objects.closest(yewArea, "Yew"); //Broken?
ok so i manange to fix the "freeze" on my script, but now it just jumps onto my anti ban and loops it.
I will try more and post results!
Still gets stuck on "loading script"
trying out various things atm
Not sure at the moment
so basicly i think this is the problem with my script, im trying to add a YEW location to chop at aswell but when i add my yew thingies my script stops working. (no its not because of the update, my script works fine without the YEW added)
private State getState() {
if (dialogues.isPendingContinuation())
return State.LEVEL;
else if (willowArea.contains(myPlayer()))
if(yewArea.contains(myPlayer())) < problem
return State.CHOP;
return State.IDLE;
}