Package com.l2jfrozen.gameserver.network.serverpackets

Examples of com.l2jfrozen.gameserver.network.serverpackets.AquireSkillInfo.addRequirement()


        spbId = SkillSpellbookTable.getInstance().getBookForSkill(skill);
      }

      if(spbId > -1)
      {
        asi.addRequirement(99, spbId, 1, 50);
      }

      sendPacket(asi);
    }
    else if(_skillType == 2)
View Full Code Here


      AquireSkillInfo asi = new AquireSkillInfo(skill.getId(), skill.getLevel(), requiredRep, 2);

      if(Config.LIFE_CRYSTAL_NEEDED)
      {
        asi.addRequirement(1, itemId, 1, 0);
      }

      sendPacket(asi);
    }
    else
View Full Code Here

        costcount = s.getCostCount();
        spcost = s.getSpCost();
      }

      AquireSkillInfo asi = new AquireSkillInfo(skill.getId(), skill.getLevel(), spcost, 1);
      asi.addRequirement(4, costid, costcount, 0);
      sendPacket(asi);
    }
  }

  @Override
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.