public boolean clickContinue() { RS2InterfaceChild c = getInterfaceWithText("continue"); if (c != null) return c.click(); return false; } public RS2InterfaceChild getInterfaceWithText(String text) { for (RS2Interface i : client.interfaces) for (RS2InterfaceChild c : i.getChildren()) if (c.getMessage().contains(text)) return c; }