- Joined
- Jan 31, 2015
- Messages
- 116
- Thread Author
- #1
RuneMate Version: 2.50.3
Affected Games: RS3
When trying to query for all actionbar slots, simply doing
doesn't work, it only gives filled slots.
Doing some wild stuff like
yields the amount of filled slots you have
or maybe something wild like this
this also yields the amount of filled slots you have
So the solution to retrive all (empty and filled actionbar slots) is to do
Which doesn't make any sense
Affected Games: RS3
When trying to query for all actionbar slots, simply doing
Code:
ActionBar.newQuery().results();
Doing some wild stuff like
Code:
ActionBar.newQuery().filter(slot -> slot.isEmpty() || !slot.isEmpty()).results()
or maybe something wild like this
Code:
ActionBar.newQuery().empty(true).empty(false).results()
So the solution to retrive all (empty and filled actionbar slots) is to do
Code:
ActionBar.newQuery().filter(slot -> !slot.isEmpty()).empty(true).results()