Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

Implemented Add House.Options.isDoorRenderingDisabled() etc...

Joined
Aug 23, 2015
Messages
1,970
Recent OSRS update added a new option to disable rendering doors completely, in addition to the existing options to render them closed/opened.

To determine if doors are being rendered:
Code:
        Varbit doorsNotRendered = Varbits.load(6269);
        doorsNotRendered != null && doorsNotRendered.getValue() == 2;

To disable rendering the doors, the radiobutton is Interfaces.getAt(370, 16) and the interaction string is "Select"
 
Top