Examples of altUseSkill()


Examples of lineage2.gameserver.model.Playable.altUseSkill()

      {
        clientActionFailed();
      }
      else
      {
        actor.altUseSkill(skill, target);
      }
      return;
    }
    if (actor.isActionsDisabled())
    {
View Full Code Here

Examples of lineage2.gameserver.model.instances.NpcInstance.altUseSkill()

        }
      }
      if (closestItem != null)
      {
        closestItem.deleteMe();
        actor.altUseSkill(s_display_bug_of_fortune1, actor);
        Functions.npcSayInRange(actor, 600, NpcString.YUMYUM_YUMYUM);
        i_ai0++;
        if ((i_ai0 > 1) && (i_ai0 <= 10))
        {
          i_ai1 = 1;
View Full Code Here

Examples of lineage2.gameserver.model.instances.SummonInstance.altUseSkill()

        summon.spawnMe(loc == null ? Location.findAroundPosition(activeChar, 50, 70) : loc);
        summon.setRunning();
        summon.setFollowMode(true);
        if (summon.getSkillLevel(4140) > 0)
        {
          summon.altUseSkill(SkillTable.getInstance().getInfo(4140, summon.getSkillLevel(4140)), activeChar);
        }
        if (summon.getName().equalsIgnoreCase("Shadow"))
        {
          summon.addStatFunc(new FuncAdd(Stats.ABSORB_DAMAGE_PERCENT, 0x40, this, 15));
        }
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.