By registering with us, you'll be able to discuss, share and private message with other members of our community.
Sign up now!That will also bank, leather sells for a decent amount.
Are there any bots that do this? Didn't read the aio killers as I think they're premium
Making it open the gate doesn't sound so bad to fix o:?Alpha Fighter does this but it can't open the gate.
@SlashnHax is a great coder so he could probably whip something up if he's free and you ask nicely.
Making it open the gate doesn't sound so bad to fix o:?
private boolean openGate() {
GameObject gate = (GameObject)((LocatableEntityQueryResults)((GameObjectQueryBuilder)GameObjects.newQuery().names(new String[]{"Gate"}).filter(new Filter() {
public boolean accepts(GameObject object) {
return object != null && object.getDefinition().getActions().contains("Open") && CleryFlax.FLAX_AREA.contains(object);
}
})).results()).nearest();
if(gate == null) {
return false;
} else {
if(!gate.isVisible()) {
Camera.turnTo(gate);
}
return gate.interact("Open");
}
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.