Jump to content

Joseph

Trade With Caution
  • Posts

    4692
  • Joined

  • Last visited

  • Feedback

    91.3%

Community Answers

  1. 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; }
  2. Joseph's post in gui question was marked as the answer   
    thanks 
     
    :p just gotta learn
×
×
  • Create New...