Examples of replaceItem()


Examples of com.l2jfrozen.gameserver.model.L2TradeList.replaceItem()

    if(args.length > 3)
    {
      int price = Integer.parseInt(args[3]);
      int order = findOrderTradeList(itemID, tradeList.getPriceForItemId(itemID), tradeListID);

      tradeList.replaceItem(itemID, Integer.parseInt(args[3]));
      updateTradeList(itemID, price, tradeListID, order);

      activeChar.sendMessage("Updated price for " + item.getName() + " in Trade List " + tradeListID);
      showShopList(activeChar, tradeListID, 1);
      return;
View Full Code Here

Examples of net.sf.l2j.gameserver.model.L2TradeList.replaceItem()

    if (args.length > 3)
    {
      int price = Integer.parseInt(args[3]);
      int order =  findOrderTradeList(itemID, tradeList.getPriceForItemId(itemID), tradeListID);

      tradeList.replaceItem(itemID, Integer.parseInt(args[3]));
      updateTradeList(itemID, price, tradeListID, order);

      activeChar.sendMessage("Updated price for "+item.getName()+" in Trade List "+tradeListID);
      showShopList(activeChar, tradeListID, 1);
      return;
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.