hansen19498 Posted April 16, 2016 Share Posted April 16, 2016 I do not know why, "createAdvanced ()" below red wavy line Tip: change access static using "INodeRouteFinder" (declaring type), click, no change ruinsPos=new Position(3013, 3356, 0); WebWalkEvent toRuins = new WebWalkEvent(INodeRouteFinder.createAdvanced(), ruinsPos);execute(toRuins); Quote Link to comment Share on other sites More sharing options...
Explv Posted April 16, 2016 Share Posted April 16, 2016 (edited) If you are simply walking to a location you can just do: getWalking().webWalk(position); Also, the creation of INodeRouteFinder is expensive, and should only be done once in a script, not every time you walk!! Create the route finder at the start of your script and store it. In the future when posting code to the Scripting Help section, please use the code tags, so that your code is properly formatted and coloured: Edited April 16, 2016 by Explv 1 Quote Link to comment Share on other sites More sharing options...