MassRS Posted January 10, 2016 Share Posted January 10, 2016 localWalker.walkPath(toship); toship is my path. but when i use this code the walkPath part gets a strike through it as shown above.. Is this a problem or will it run fine? Quote Link to comment Share on other sites More sharing options...
Final Calibur Posted January 10, 2016 Share Posted January 10, 2016 That means it's deprecated. It will still work, but it's being phased out. Use the Walking class instead. Quote Link to comment Share on other sites More sharing options...
Joseph Posted January 10, 2016 Share Posted January 10, 2016 That means it's deprecated. It will still work, but it's being phased out. Use the Walking class instead. getWalking() localWalker.walkPath(toship); toship is my path. but when i use this code the walkPath part gets a strike through it as shown above.. Is this a problem or will it run fine? Quote Link to comment Share on other sites More sharing options...
Paradox68 Posted January 11, 2016 Share Posted January 11, 2016 use getWalking().webWalk(new Position(xcoord, ycoord, height)); a Yellow strikethrough means a method is deprecated which means it's still in the API, but there is a better method available and one that is also more up-to-date. A deprecated method is usually going to be removed soon so having it in your scripts is bad because after you release the script, if the devs release a build that no longer supports that method your whole script will break until you update it with the new build path and updated methods. 1 Quote Link to comment Share on other sites More sharing options...