So I'm writing my first script and so far everything works great except when it is supposed to walk to the bank it doesn't. I looked back through my code and it says that "the method client.moveMouse(new MiniMapTileDestination, boolean) is undefined for the type Client.
private boolean walkTile(Position p) throws InterruptedException {
client.moveMouse(new MiniMapTileDestination(bot, p), false);
sleep(random(150, 250));
client.pressMouse();
any help would be great, thanks!