Examples of KickTask


Examples of l2p.gameserver.model.L2ObjectTasks.KickTask

  {
    if(_kickTask != null)
    {
      stopKickTask();
    }
    _kickTask = ThreadPoolManager.getInstance().scheduleAi(new KickTask(this), delay, true);
  }
View Full Code Here

Examples of lineage2.gameserver.model.GameObjectTasks.KickTask

   * @param delayMillis long
   */
  public void startKickTask(long delayMillis)
  {
    stopKickTask();
    _kickTask = ThreadPoolManager.getInstance().schedule(new KickTask(this), delayMillis);
  }
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.