Examples of paralizeOnAttack()


Examples of lineage2.gameserver.model.Creature.paralizeOnAttack()

        targets.add(aimTarget);
        player.broadcastPacket(new MagicSkillLaunched(player.getObjectId(), skill.getDisplayId(), skill.getDisplayLevel(), targets));
        player.callSkill(skill, targets, false);
        if (aimTarget.isNpc())
        {
          if (aimTarget.paralizeOnAttack(player))
          {
            if (Config.PARALIZE_ON_RAID_DIFF)
            {
              player.paralizeMe(aimTarget);
            }
View Full Code Here

Examples of lineage2.gameserver.model.Creature.paralizeOnAttack()

        {
          player.callSkill(skill, targets, false);
        }
        if (aimTarget.isNpc())
        {
          if (aimTarget.paralizeOnAttack(player))
          {
            if (Config.PARALIZE_ON_RAID_DIFF)
            {
              player.paralizeMe(aimTarget);
            }
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.