- Thread Author
- #1
- 100% Legacy mode support
- Fixed the flickering that occurred during screen projection (RS3) (I had to learn linear algebra for this -_-)
- Added Interfaces.getSelected and SlotAbility.isSelected
- Added a QueryResults class to the API (extends ArrayList). This allows for better sorting, shuffling, sublisting, and most importantly it allows you to more easily mix them. Using these correctly can help to prevent script detection.
Code:Previously: GameObjects.newQuery().names("Chair").actions("interact").nearest(); Current: GameObjects.newQuery().names("Chair").actions("interact").results().nearest();
- Updated the web walking path generator to correctly handle when path generation fails (return null)