That is what I need, the pathing algorithm, aka the part that will click on the tiles or the minimap. Like I said I can write my own but I do not see the point when it should be build in.
Can not, I have created an A* pathing algorithm that generates a path from a position to a position taking into account collision flags, etc, etc... Now I just need a good way to traverse the path, and I do not feel like rewriting the walking.
I can not seem to get it to work, is Walking even currently broke ?
This is what I am doing:
@Override
public int onLoop() throws InterruptedException {
WalkingEvent e = new WalkingEvent();
e.setPath(SOMEPATH);
e.execute();
return 500;
}