Package com.l2jfrozen.gameserver.model

Examples of com.l2jfrozen.gameserver.model.L2Party


    if(!(lastAttacker instanceof L2PcInstance))
      return;

    killingChar = (L2PcInstance) lastAttacker;
    L2Party associatedParty = killingChar.getParty();

    killingChar = null;

    if(associatedParty == null)
      return;

    L2PcInstance partyLeader = associatedParty.getPartyMembers().get(0);
    L2ItemInstance addedOfferings = partyLeader.getInventory().addItem("Sign", SevenSignsFestival.FESTIVAL_OFFERING_ID, _bonusMultiplier, partyLeader, this);

    associatedParty = null;

    InventoryUpdate iu = new InventoryUpdate();
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.L2Party

Copyright © 2018 www.massapicom. 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.