Examples of ExPartyPetWindowDelete


Examples of l2p.gameserver.serverpackets.ExPartyPetWindowDelete

    if(owner != null)
    {
      L2Party party = owner.getParty();
      if(party != null)
      {
        party.broadcastToPartyMembers(owner, new ExPartyPetWindowDelete(this));
      }
      owner.sendPacket(new PetDelete(getObjectId(), 2));
      owner.setPet(null);
    }
    _ownerStoreId = 0;
View Full Code Here

Examples of l2p.gameserver.serverpackets.ExPartyPetWindowDelete

    player.setParty(null);
    L2Summon player_pet;
    Collection<L2GameServerPacket> pmember_proto = new GArray<L2GameServerPacket>();
    if((player_pet = player.getPet()) != null)
    {
      pmember_proto.add(new ExPartyPetWindowDelete(player_pet));
    }
    pmember_proto.add(new PartySmallWindowDelete(player));
    pmember_proto.add(new SystemMessage(SystemMessage.S1_HAS_LEFT_THE_PARTY).addString(player.getName()));
    synchronized(members_list)
    {
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExPartyPetWindowDelete

  {
    Player owner = getPlayer();
    Party party = owner.getParty();
    if (party != null)
    {
      party.broadcastToPartyMembers(owner, new ExPartyPetWindowDelete(this));
    }
    owner.sendPacket(new PetDelete(getSummonType(), getObjectId()));
    stopDecay();
    super.onDelete();
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExPartyPetWindowDelete

    }
    pplayer.add(PartySmallWindowDeleteAll.STATIC);
    List<L2GameServerPacket> outsInfo = new ArrayList<>(6);
    for (Summon summon : player.getSummonList())
    {
      outsInfo.add(new ExPartyPetWindowDelete(summon));
    }
    outsInfo.add(new PartySmallWindowDelete(player));
    if (kick)
    {
      outsInfo.add(new SystemMessage(SystemMessage.S1_WAS_EXPELLED_FROM_THE_PARTY).addName(player));
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.