Examples of registerCommonRecipeList()


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

            activeChar.sendPacket(sm);
            sm = null;
          }
          else
          {
            activeChar.registerCommonRecipeList(rp);
            activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false);
            SystemMessage sm = new SystemMessage(SystemMessageId.S1_ADDED);
            sm.addString(item.getItemName());
            activeChar.sendPacket(sm);
            sm = null;
View Full Code Here

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

          sm.addNumber(activeChar.GetCommonRecipeLimit());
              activeChar.sendPacket(sm);
        }
        else
          {
              activeChar.registerCommonRecipeList(rp);
              activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false);
              SystemMessage sm = new SystemMessage(SystemMessageId.S1_S2);
              sm.addString("Added recipe \"" + rp.getRecipeName() + "\" to Common RecipeBook");
              activeChar.sendPacket(sm);
          }
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.