Examples of unregisterRecipeList()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.unregisterRecipeList()

       
      L2RecipeList rp = RecipeTable.getInstance().getRecipeList(_recipeID - 1);
      if(rp == null)
        return;

      activeChar.unregisterRecipeList(_recipeID);

      RecipeBookItemList response = new RecipeBookItemList(rp.isDwarvenRecipe(), activeChar.getMaxMp());

      if(rp.isDwarvenRecipe())
      {
View Full Code Here

Examples of net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.unregisterRecipeList()

        if (activeChar != null)
        {
          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
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.