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
  • Detecting if an interface is open


    Step

    Recommended Posts

    I'm brand new to scripting bots.  How can I check if an interface is open and interact with it.  Specifically trying to use a gold bar on a furnace and click make item

    Link to comment
    Share on other sites

    An interface is an widget . For example the bank interface . Most of the widgets have childs . For example the "x" button in the right upper corner of the bank is a child of the bank's interface . Some childs have childs too , be aware of that . Let's say I want to see if the bank interface is open . You can do getWidgets().getWidget(id) != null . If it's non null it means it exists and its visible . Let's say I want to close the bank , you could do something like getWidgets().getWidgetChild(id1,id2).interact(). id1 = parent id and id2 = child id .

    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.