Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2Player.abortCast()


      if(weapon != null && uneq == weapon)
      {
        uneq.setChargedSpiritshot(L2ItemInstance.CHARGED_NONE);
        uneq.setChargedSoulshot(L2ItemInstance.CHARGED_NONE);
        cha.abortAttack(true, true);
        cha.abortCast(true);
      }
    }
    cha.refreshExpertisePenalty();
    cha.broadcastUserInfo(true);
  }
View Full Code Here


        Hero.removeSkills(player);
      }
      // Abort casting if player casting
      if(player.isCastingNow())
      {
        player.abortCast(true);
      }
      // Удаляем чужие кубики
      for(L2CubicInstance cubic : player.getCubics())
      {
        if(cubic.isGivenByOther())
View Full Code Here

    if(_unselect == 0)
    {
      if(activeChar.isCastingNow())
      {
        L2Skill skill = activeChar.getCastingSkill();
        activeChar.abortCast(skill != null && (skill.isHandler() || skill.getHitTime() > 5000));
      }
      else if(activeChar.getTarget() != null)
      {
        activeChar.setTarget(null);
      }
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.