Examples of ExAlterSkillRequest


Examples of lineage2.gameserver.network.serverpackets.ExAlterSkillRequest

    {
      if(playerNearEffected.getTarget() == _effected && playerNearEffected.isAwaking())
      {
        int chainSkill = _ChainedAirSkills.get(playerNearEffected.getClassId().getId());
        int temporalReplaceSkill = _ChainedTemporalReplace.get(chainSkill);
        playerNearEffected.sendPacket(new ExAlterSkillRequest(chainSkill,temporalReplaceSkill,5))
      }
    }
    if(!_effected.isAirBinded())
      _effected.startAirbinding();
    _effected.abortAttack(true, true);
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExAlterSkillRequest

    {
      if(playerNearEffected.getTarget() == _effected && playerNearEffected.isAwaking())
      {
        int chainSkill = _ChainKnockSkills.get(playerNearEffected.getClassId().getId());
        int temporalReplaceSkill = _ChainedTemporalReplace.get(chainSkill);
        playerNearEffected.sendPacket(new ExAlterSkillRequest(chainSkill,temporalReplaceSkill,3))
      }
    }
    if (loc == null)
      _log.info("EffectKnockDown Loc null check this!");
    _effected.broadcastPacket(new FlyToLocation(_effected, loc, FlyType.PUSH_DOWN_HORIZONTAL, getSkill().getFlySpeed()));//need to check: if the effected is already knocked down, move the target again?
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.