Package l2p.gameserver.model.base

Examples of l2p.gameserver.model.base.ClassId


    short MARK_OF_RAIDER_ID = 1592;
    short KHAVATARI_TOTEM_ID = 1615;
    short MASK_OF_MEDIUM_ID = 1631;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "No Quest";
    if(event == 45 && classId == ClassId.orcFighter)
    {
      if(Level <= 19 && pl.getInventory().getItemByItemId(MARK_OF_RAIDER_ID) == null)
      {
View Full Code Here


    {
      show("I have nothing to say you", pl, npc);
      return;
    }
    String htmltext;
    ClassId classId = pl.getClassId();
    if(classId == ClassId.darkFighter)
    {
      htmltext = "01.htm";
    }
    else if(classId == ClassId.darkMage)
View Full Code Here

    short IRON_HEART_ID = 1252;
    short JEWEL_OF_DARKNESS_ID = 1261;
    short ORB_OF_ABYSS_ID = 1270;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "No Quest";
    if(event == 32 && classId == ClassId.darkFighter)
    {
      if(Level <= 19 && pl.getInventory().getItemByItemId(GAZE_OF_ABYSS_ID) == null)
      {
View Full Code Here

    {
      show("I have nothing to say you", pl, npc);
      return;
    }
    String htmltext;
    ClassId classId = pl.getClassId();
    if(classId == ClassId.orcMonk)
    {
      htmltext = "01.htm";
    }
    else if(classId == ClassId.orcRaider)
View Full Code Here

    short MARK_OF_GLORY_ID = 3203;
    short MARK_OF_CHAMPION_ID = 3276;
    short MARK_OF_LORD_ID = 3390;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "No Quest";
    if(event == 48 && classId == ClassId.orcMonk)
    {
      if(Level <= 39)
      {
View Full Code Here

    {
      show("I have nothing to say you", pl, npc);
      return;
    }
    String htmltext;
    ClassId classId = pl.getClassId();
    if(npc.getNpcId() == 30175)
    {
      if(classId == ClassId.shillienOracle)
      {
        htmltext = "08.htm";
View Full Code Here

    short MARK_OF_SAGITTARIUS_ID = 3293;
    short MARK_OF_WITCHCRAFT_ID = 3307;
    short MARK_OF_SUMMONER_ID = 3336;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "No Quest";
    if(event == 33 && classId == ClassId.palusKnight)
    {
      if(Level <= 39)
      {
View Full Code Here

      return;
    }
    short SteelrazorEvaluation = 9772;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "04.htm";
    if(event == 126 && classId == ClassId.femaleSoldier)
    {
      if(Level >= 20 && pl.getInventory().getItemByItemId(SteelrazorEvaluation) != null)
      {
View Full Code Here

    {
      show("I have nothing to say you", pl, npc);
      return;
    }
    String htmltext;
    ClassId classId = pl.getClassId();
    if(classId == ClassId.femaleSoldier)
    {
      htmltext = "01.htm";
    }
    else
View Full Code Here

      return;
    }
    short GwainsRecommendation = 9753;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "04.htm";
    if(event == 125 && classId == ClassId.maleSoldier)
    {
      if(Level >= 20 && pl.getInventory().getItemByItemId(GwainsRecommendation) != null)
      {
View Full Code Here

TOP

Related Classes of l2p.gameserver.model.base.ClassId

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.