Examples of restoreDeathPenaltyBuffLevel()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.restoreDeathPenaltyBuffLevel()

    for (L2ItemInstance temp : activeChar.getInventory().getAugmentedItems())
      if (temp != null && temp.isEquipped())
        temp.getAugmentation().applyBoni(activeChar);
   
    // Apply death penalty
    activeChar.restoreDeathPenaltyBuffLevel();

    if(L2Event.active && L2Event.connectionLossData.containsKey(activeChar.getName()) && L2Event.isOnEvent(activeChar))
      L2Event.restoreChar(activeChar);
    else if (L2Event.connectionLossData.containsKey(activeChar.getName()))
      L2Event.restoreAndTeleChar(activeChar);
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.