Joseph's post in client.selectOption alt was marked as the answer
Alright I got you, I'll edit this post with the method
edit:
public boolean selectMenuOption(String option) {
if (script.menu.isOpen()) {
List<Option> options = script.menu.getMenu();
for (int i = 0; i < options.size(); i++) {
if (options.get(i).action.equalsIgnoreCase(option)) {
return script.mouse.click(new RectangleDestination(script.bot, script.menu.getX(), script.menu.getY() + 20 + (i * 15), script.menu.getWidth(), 15));
}
}
}
return false;
}