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
  • otherPlayerAcceptedTrade(int trade_screen)


    Scorpius

    Recommended Posts


    boolean otherPlayerAcceptedTrade(int trade_screen)
    {
        switch(trade_screen)
        {
            case 1:
            {
                return getTrade().isOpen(1) && getWidgets().getWidget(335).getChild(30).getText().contains("has");
            }
            case 2:
            {
                return getTrade().isOpen(2) && getWidgets().getWidget(334).getChild(4).getText().contains("has");
            }
            default:
            {
                return false;
            }
        }
    }
    Link to comment
    Share on other sites

    Post your code

    Can't be bothered.

     

    While static ids are fine, its better to just filter them than relying on them. Game updates will break the static child 70% of the time causing the static ids to be checked and changed.

    Link to comment
    Share on other sites

    Can't be bothered.

     

    While static ids are fine, its better to just filter them than relying on them. Game updates will break the static child 70% of the time causing the static ids to be checked and changed.

    How do I filter them?

    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.