- Joined
- Aug 23, 2015
- Messages
- 1,970
- Thread Author
- #1
Game Mode: OSRS
Bot settings: -
Bot run duration: about 10 seconds
Bug description: it will go to equipment tab but won't select option on equipments
Steps to reproduce: start any bot that needs to teleport using equipment, and wait for it to try to do so
Have you found a work-around (manual): teleport using the equipment yourself
Please attach log files & screenshots:
This is the code i'm using. It worked before client update, now it doesnt.
Bot settings: -
Bot run duration: about 10 seconds
Bug description: it will go to equipment tab but won't select option on equipments
Steps to reproduce: start any bot that needs to teleport using equipment, and wait for it to try to do so
Have you found a work-around (manual): teleport using the equipment yourself
Please attach log files & screenshots:
This is the code i'm using. It worked before client update, now it doesnt.
Code:
if (InterfaceWindows.getEquipment().isOpen()) {
SpriteItem duelring = Equipment.getItems(anyRing).first();
if (duelring != null)
if (duelring.interact("Castle Wars")) {
Execution.delayUntil(() -> cwars.contains(c), 5000);
}
} else {
InterfaceWindows.getEquipment().open();
}
}
Code:
String[] anyRing = new String[]{"Ring of dueling(8)", "Ring of dueling(7)", "Ring of dueling(6)", "Ring of dueling(5)", "Ring of dueling(4)", "Ring of dueling(3)", "Ring of dueling(2)", "Ring of dueling(1)"};
Code:
Player c = Players.getLocal();