Package com.l2jfrozen.gameserver.network.serverpackets

Examples of com.l2jfrozen.gameserver.network.serverpackets.PetItemList


      else
      {
        pet.getInventory().equipItem(item);
      }

      PetItemList pil = new PetItemList(pet);
      activeChar.sendPacket(pil);

      PetInfo pi = new PetInfo(pet);
      activeChar.sendPacket(pi);
      // The PetInfo packet wipes the PartySpelled (list of active spells' icons).  Re-add them
View Full Code Here


          {
            _activeChar.sendPacket(new PetInfo(summon));

            if(summon instanceof L2PetInstance)
            {
              _activeChar.sendPacket(new PetItemList((L2PetInstance) summon));
            }
          }
          else
          {
            _activeChar.sendPacket(new NpcInfo(summon, _activeChar));
View Full Code Here

          // The PetInfo packet wipes the PartySpelled (list of active  spells' icons).  Re-add them
          summon.updateEffectIcons(true);

          if(summon instanceof L2PetInstance)
          {
            active_char.sendPacket(new PetItemList((L2PetInstance) summon));
          }
        }
        else
        {
          active_char.sendPacket(new NpcInfo(summon, active_char));
View Full Code Here

      }
    }
   
    getInventory().addItem("Pickup", target, getOwner(), this);
    // FIXME Just send the updates if possible (old way wasn't working though)
    PetItemList iu = new PetItemList(this);
    getOwner().sendPacket(iu);
    iu = null;
   
    getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
   
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.serverpackets.PetItemList

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.