- Joined
- Feb 15, 2016
- Messages
- 64
- Thread Author
- #1
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:
Was told this probably isn't a bug, so just delete if so ples.
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();
}
}
}
Was told this probably isn't a bug, so just delete if so ples.