Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.ExBR_ProductList


    finally
    {
      DatabaseUtils.closeDatabaseCSR(con, statement, result);
    }
    _log.info("CashShop: loaded " + shop.size() + " items available for trading.");
    list = new ExBR_ProductList();
    Map<CashShopItem, Integer> data1 = new LinkedHashMap<CashShopItem, Integer>();
    for(CashShopItem csi : shop.values())
    {
      data1.put(csi, csi.order);
    }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.ExBR_ProductList

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.