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
  • player standing still


    JAG98

    Recommended Posts

    Following segment of code:

    Spoiler
    
    if(getLocalPlayer().isStandingStill()){
        log("Player standing still");
        areaSelect();
    }
    else{
        sleepUntil(()-> inArea, Calculations.random(5500,7500));
        log("sleeping");
    }

    The only thing that gets printed to the log is sleeping. Even when the player just stands like a statue, doing absolutely nothing.

    Link to comment
    Share on other sites

    2 hours ago, hoke2012 said:

    try:

     

    
    if(!localPlayer().isAnimating())
        log("Player.Standing.Still");
    areaSelect().

     

    or 

    
    if(!localPlayer().isMoving())
        log("Player.Standing.Still");
    areaSelect().

     

    getLocalPlayer is from DB2 API and localPlayer(). is DB3. for more help check out:

     

    https://dreambot.org/guides/scripter-guide/script-dev/upgrading-to-db3/

    Worked perfectly. Thanks!

    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.