!747

m {
  p {
    startBot("User Request List Bot", "#1001706");
    makeAndroid3("Execute \"talk to bot\" commands bot.");
    
    while (true) {
      try {
        L<S> list = (L) unstructure(sendToLocalBotOpt("User Request List Bot", "structure"));
        for (S s : list) {
          new Matches m;
          if (match3("talk to bot *", s, m)) {
            sendToLocalBot("User Request List Bot", "remove *", s);
            nohupJavax("#1001708 " + m.unq(0));
          }
        }
      } catch (Exception e) {
        print(e);
      }
      sleep(1000);
    }
  }
}