Package com.l2jfrozen.gameserver.network.serverpackets

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


    activeChar.getMacroses().sendUpdate();
   
    // Send packets info
    sendPacket(new ClientSetTime()); // SetClientTime
    sendPacket(new UserInfo(activeChar)); //
    sendPacket(new HennaInfo(activeChar));
    sendPacket(new FriendList(activeChar));
    sendPacket(new ItemList(activeChar, false));
    sendPacket(new ShortCutInit(activeChar));

    // Send all skills to char
View Full Code Here


      onEnterAio(activeChar);

    activeChar.updateNameTitleColor();

    sendPacket(new UserInfo(activeChar));
    sendPacket(new HennaInfo(activeChar));
    sendPacket(new FriendList(activeChar));
    sendPacket(new ItemList(activeChar, false));
    sendPacket(new ShortCutInit(activeChar));
    activeChar.broadcastUserInfo();
    activeChar.sendPacket(new EtcStatusUpdate(activeChar));
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

          CloseUtil.close(con);
          con = null;
        }

        // Send Server->Client HennaInfo packet to this L2PcInstance
        HennaInfo hi = new HennaInfo(this);
        sendPacket(hi);
        hi = null;

        // Send Server->Client UserInfo packet to this L2PcInstance
        UserInfo ui = new UserInfo(this);
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 com.l2jfrozen.gameserver.network.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.