Welcome!

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

Sign up now!

Resolved Will try and pick up items behind action bar

Joined
Feb 15, 2016
Messages
64
If an item is behind the action bar (i.e. not accessible) it will recognise it as being visible and will attempt to pick up the said item. A video is attached to help explain the bug.

Spectre Version: V1.1.5
Bind Version: V1.1.0
Affected Games: RS3
Code Used:
Code:
// Picks up the item and if it is a cowhide, it will add a count to the total cowhides
if (item != null) {
if (item.interact("Take", itemName)) {
Execution.delayUntil(()->!item.isValid(), 5000);
if (item != null && !item.isValid() && itemName.matches("Cowhide")) {
script.addCowhide();
}
}
}

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
Was told this probably isn't a bug, so just delete if so ples.
 
Java Warlord
Joined
Nov 17, 2014
Messages
4,906
Thats because it theoretically is visible. It gets projected, but overlayed by an interface. You could potentially detect that, but it would be very heavy to check every interface if it overlays the model.
 
Joined
Feb 15, 2016
Messages
64
Thats because it theoretically is visible. It gets projected, but overlayed by an interface. You could potentially detect that, but it would be very heavy to check every interface if it overlays the model.
Yeah, thought about that after I posted it.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
We used to do the calculations but they're too heavy, we're working on a better solution but it won't be ready for some time since we have other things on our plate.
 
Top