So I want my mouse to move to a entity, right click on it and then move to an option from the "Choose option" menu but not click on it.
I already have this for example:
Entity door = objects.closest("Door");
EntityDestination mouseDoor = new EntityDestination(getBot(),door);
getMouse().click(mouseChest, true);
now the mouse just moves to the door and right clicks on it. But what should i add to make it even move to the "Open" action but not click on it yet?