public void Walkpath() throws InterruptedException {
switch (random(1, 5)) {
case 1:
getLocalWalker().walk(new Position(x, y, z));
break;
case 2:
getLocalWalker().walk(new Position(x, y, z));
break;
case 3:
break;
}
sleep(random(700, 1800));
}
Not sure what else you mean, perhaps try to explain it a bit better?