Package org.rsbot.script.task

Examples of org.rsbot.script.task.LoopTask.stop()


  }

  public void stopScript(final int id) {
    final LoopTask script = getTasks().get(id);
    if (script != null) {
      script.stop();
      remove(id);
      notifyStop();
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.