albelnox181 0 Share Posted September 5, 2015 How can I walk a path of tiles specified in an array. I can't use normal walker.walk because it has to avoid agressive monsters. Link to comment Share on other sites More sharing options...
Stormscythe 263 Share Posted September 5, 2015 You can do something like: int i = 1; if(getLocalPlayer().distanceTo(tile[i]) > 6) { getWalking().walk(tile[i]); } else { i++; } Havent tested this yet btw. Link to comment Share on other sites More sharing options...
Recommended Posts