Package net.sf.l2j.gameserver.serverpackets

Examples of net.sf.l2j.gameserver.serverpackets.HennaInfo


        activeChar.getMacroses().sendUpdate();

        sendPacket(new UserInfo(activeChar));

        sendPacket(new HennaInfo(activeChar));

        sendPacket(new FriendList(activeChar));

        sendPacket(new ItemList(activeChar, false));
View Full Code Here


   
    // Calculate Henna modifiers of this L2PcInstance
    recalcHennaStats();
   
    // Send Server->Client HennaInfo packet to this L2PcInstance
    sendPacket(new HennaInfo(this));
   
    // Send Server->Client UserInfo packet to this L2PcInstance
    sendPacket(new UserInfo(this));
   
    // Add the recovered dyes to the player's inventory and notify them.
View Full Code Here

          {
          }
        }
       
        // Send Server->Client HennaInfo packet to this L2PcInstance
        HennaInfo hi = new HennaInfo(this);
        sendPacket(hi);
       
        // Send Server->Client UserInfo packet to this L2PcInstance
        UserInfo ui = new UserInfo(this);
        sendPacket(ui);
View Full Code Here

    {
      _henna[i] = null;
    }
   
    restoreHenna();
    sendPacket(new HennaInfo(this));
   
    if (getCurrentHp() > getMaxHp())
    {
      setCurrentHp(getMaxHp());
    }
View Full Code Here

TOP

Related Classes of net.sf.l2j.gameserver.serverpackets.HennaInfo

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.