- Joined
- Aug 23, 2015
- Messages
- 1,961
- Thread Author
- #1
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:
To disable rendering the doors, the radiobutton is Interfaces.getAt(370, 16) and the interaction string is "Select"
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"