Walking to the fishing spot works now, however walking back to the bank doesn't.
WalkingEvent toEdgeBank = new WalkingEvent(Banks.EDGEVILLE);
toEdgeBank.setOperateCamera(true);
toEdgeBank.setEnergyThreshold(50);
toEdgeBank.setBreakCondition(new Condition() {
@Override
public boolean evaluate() {
return Banks.EDGEVILLE.getRandomPosition().distance(myPlayer()) <= 6;
}
});
getBot().getEventExecutor().execute(toEdgeBank);