Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Crossing Wilderness ditch


    Jort

    Recommended Posts

    Hi, I want to walk to the Wilderness, but Walking.walkto() fails when at the ditch. Is there some fancy way to do this, like adding a custom obstacle handler event?

    SOLUTION:

    Put in onStart():

    Walking.getAStarPathFinder().addObstacle(new PassableObstacle("Wilderness Ditch", "Cross", null, null, null));

    Call repeatedly in onLoop():

     public static boolean crossDitch(){
            WidgetChild widget = Widgets.getWidgetChild(475, 11, 1);
            if(widget == null){
                return true;
            }
            Logg.info("Interacting with ditch widget.");
            return widget.interact();
    }
    

    This method clicks 'enter wilderness' if that widget appears when clicking the ditch.

    Link to comment
    Share on other sites

    15 hours ago, Meteorite said:

    if (checkForPit) {

    click pit...

    } else if (Walking.walkTo(idk)) {

    walk stuff

    }

     

    maybe?

    Thanks for your input, however this would cross the ditch again if already crossed. I have edited my post with the solution I found!

    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.