Package com.l2jfrozen.gameserver.model.actor.instance

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


            //can't add recipe, becouse create item level too low
            SystemMessage sm = new SystemMessage(SystemMessageId.CREATE_LVL_TOO_LOW_TO_REGISTER);
            activeChar.sendPacket(sm);
            sm = null;
          }
          else if(activeChar.getDwarvenRecipeBook().length >= activeChar.GetDwarfRecipeLimit())
          {
            //Up to $s1 recipes can be registered.
            SystemMessage sm = new SystemMessage(SystemMessageId.UP_TO_S1_RECIPES_CAN_REGISTER);
            sm.addNumber(activeChar.GetDwarfRecipeLimit());
            activeChar.sendPacket(sm);
View Full Code Here


          }
          else if(activeChar.getDwarvenRecipeBook().length >= activeChar.GetDwarfRecipeLimit())
          {
            //Up to $s1 recipes can be registered.
            SystemMessage sm = new SystemMessage(SystemMessageId.UP_TO_S1_RECIPES_CAN_REGISTER);
            sm.addNumber(activeChar.GetDwarfRecipeLimit());
            activeChar.sendPacket(sm);
            sm = null;
          }
          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.