Package com.l2jfrozen.gameserver.model

Examples of com.l2jfrozen.gameserver.model.L2RecipeList


    {
      writeD(_recipes.length);//number of items in recipe book

      for(int i = 0; i < _recipes.length; i++)
      {
        L2RecipeList temp = _recipes[i];
        writeD(temp.getId());
        writeD(i + 1);
      }
    }

    if(_seller.getCreateList() == null)
View Full Code Here


  }

  @Override
  protected final void writeImpl()
  {
    L2RecipeList recipe = RecipeTable.getInstance().getRecipeById(_id);

    if(recipe != null)
    {
      writeC(0xD7);

      writeD(_id);
      writeD(recipe.isDwarvenRecipe() ? 0 : 1); // 0 = Dwarven - 1 = Common
      writeD((int) _activeChar.getCurrentMp());
      writeD(_activeChar.getMaxMp());
      writeD(_success ? 1 : 0); // item creation success/failed
    }
    else if(Config.DEBUG)
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.L2RecipeList

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.