Hey, so I was planning on making a farm purely based on my own knowledge but I have come across an issue that no matter what I try there's always issues, here's my method for checking for trees:
RS2Object Yew = objects.closest(yew -> yew.exists() && yew.getName().equals("Yew") && yews.contains(yew));
But for some reason when it cuts down one tree it just hangs there until it re-spawns and doesn't try to go to the next nearest tree, here's my yew Area also:
Area yews = new Area(
new int[][]{
{ 3266, 3472 },
{ 3272, 3464 },
{ 3307, 3461 },
{ 3313, 3468 },
{ 3309, 3474 },
{ 3271, 3484 },
{ 3270, 3496 },
{ 3264, 3498 }
}
);
any tips in the right direction would be appreciated.