Examples of updateAbnormalEffect()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance.updateAbnormalEffect()

        else if (target instanceof L2NpcInstance)
        {
          L2NpcInstance npc = (L2NpcInstance) target;
          oldName = npc.getName();
          npc.setName(val);
          npc.updateAbnormalEffect();
        }
       
        if (oldName == null)
        {
          activeChar.sendPacket(new SystemMessage(SystemMessageId.INCORRECT_TARGET));
View Full Code Here

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance.updateAbnormalEffect()

          player.broadcastTitleInfo();
        }
        else if (npc != null)
        {
          npc.setTitle(val);
          npc.updateAbnormalEffect();
        }
       
        val = null;
       
        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.