Examples of CastEndTimeTask


Examples of l2p.gameserver.model.L2ObjectTasks.CastEndTimeTask

      return;
    }
    int skillCoolTime = Formulas.calcMAtkSpd(this, skill, skill.getCoolTime());
    if(skillCoolTime > 0)
    {
      ThreadPoolManager.getInstance().scheduleAi(new CastEndTimeTask(this), skillCoolTime, isPlayable());
    }
    else
    {
      onCastEndTime();
    }
View Full Code Here

Examples of lineage2.gameserver.model.GameObjectTasks.CastEndTimeTask

      skillCoolTime = Formulas.calcMAtkSpd(this, skill, skill.getCoolTime() + chargeAddition);
    else       
      skillCoolTime = skill.getCoolTime() + chargeAddition;
    if (skillCoolTime > 0)
    {
      ThreadPoolManager.getInstance().schedule(new CastEndTimeTask(this), skillCoolTime);
    }
    else
    {
      onCastEndTime(true);
    }
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.