Welcome!

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

Sign up now!

Bug Cannot retrieve all actionbar slots

Joined
Jan 31, 2015
Messages
116
RuneMate Version: 2.50.3
Affected Games: RS3


When trying to query for all actionbar slots, simply doing
Code:
ActionBar.newQuery().results();
doesn't work, it only gives filled slots.


Doing some wild stuff like
Code:
ActionBar.newQuery().filter(slot -> slot.isEmpty() || !slot.isEmpty()).results()
yields the amount of filled slots you have

or maybe something wild like this
Code:
ActionBar.newQuery().empty(true).empty(false).results()
this also yields the amount of filled slots you have


So the solution to retrive all (empty and filled actionbar slots) is to do
Code:
ActionBar.newQuery().filter(slot -> !slot.isEmpty()).empty(true).results()
Which doesn't make any sense
 
Top