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
  • Interacting with items correctly


    Dockid

    Recommended Posts

    Hi, Im currently running my script and it seems to work well but in certain areas it just doesn't function as I would like it. 

    Two examples: When teleporting with my ROD it will spam click the teleport option until I am out of the area.

                                When looting from a drop it will spam the 'Take' option until it is successful.

    How can i rewrite these areas of my script so that it will take its time when interacting with items. 

     

    Link to comment
    Share on other sites

    Use sleepUntil to wait until a condition is met. I usually do the following.

    if (getEquipment().interact(EquipmentSlot.RING.getSlot(), "Castle Wars")) {
    	final Tile teledFrom = getLocalPlayer().getTile();
      	sleepUntil(() -> teledFrom.distance() > 10, 5000);
    }
    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.