Examples of ManufactureItem


Examples of lineage2.gameserver.model.items.ManufactureItem

      long price = _prices[i];
      if (!manufacturer.findRecipe(recipeId))
      {
        continue;
      }
      ManufactureItem mi = new ManufactureItem(recipeId, price);
      createList.add(mi);
    }
    if (!createList.isEmpty())
    {
      manufacturer.setCreateList(createList);
View Full Code Here

Examples of lineage2.gameserver.model.items.ManufactureItem

        }
        int recId = Integer.parseInt(values[0]);
        long price = Long.parseLong(values[1]);
        if (findRecipe(recId))
        {
          _createList.add(new ManufactureItem(recId, price));
        }
      }
      var = getVar("manufacturename");
      if (var != null)
      {
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.