Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2RecipeComponent


        rset2 = st2.executeQuery();
        while(rset2.next())
        {
          int rpItemId = rset2.getInt("item");
          int quantity = rset2.getInt("q");
          L2RecipeComponent rp = new L2RecipeComponent(rpItemId, quantity);
          recipePartList.add(rp);
        }
        // Верхняя или fullbody часть не может быть foundation
        if(!Config.CRAFT_MASTERWORK_CHEST && foundation > 0)
        {
View Full Code Here

TOP

Related Classes of l2p.gameserver.model.L2RecipeComponent

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.