Examples of callSkill()


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

        {
          skill = SkillTable.getInstance().getInfo(skillId, 1);
          LazyArrayList<Creature> target = new LazyArrayList<>();
          target.add(player);
          actor.broadcastPacket(new MagicSkillUse(actor, player, skillId, 0, 0, 0));
          actor.callSkill(skill, target, true);
        }
        player.sendPacket(new ExShowScreenMessage(NpcString.NEWBIE_HELPER_HAS_CASTED_BUFFS_ON_$S1, 800, ScreenMessageAlign.TOP_CENTER, player.getName()));
      }
    }
    return 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.