Examples of RecipeBookItemList


Examples of net.sf.l2j.gameserver.serverpackets.RecipeBookItemList

          L2RecipeList rp = RecipeController.getInstance().getRecipeList(_recipeID-1);
           if (rp == null)
             return;
            activeChar.unregisterRecipeList(_recipeID);

            RecipeBookItemList response = new RecipeBookItemList(rp.isDwarvenRecipe(),activeChar.getMaxMp());
           if (rp.isDwarvenRecipe())
             response.addRecipes(activeChar.getDwarvenRecipeBook());
           else
             response.addRecipes(activeChar.getCommonRecipeBook());

            activeChar.sendPacket(response);
        }
    }
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.