Examples of newCharInfo()


Examples of l2p.gameserver.model.L2Player.newCharInfo()

    if(player.getVarB("notraders"))
    {
      L2Player trader = L2ObjectsStorage.getAsPlayer(item.merchantStoredId);
      if(trader != null)
      {
        player.sendPacket(trader.newCharInfo());
        if(trader.getPrivateStoreType() == L2Player.STORE_PRIVATE_BUY)
        {
          player.sendPacket(new PrivateStoreMsgBuy(trader));
        }
        else if(trader.getPrivateStoreType() == L2Player.STORE_PRIVATE_SELL || trader.getPrivateStoreType() == L2Player.STORE_PRIVATE_SELL_PACKAGE)
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.