Package l2p.gameserver.model.base

Examples of l2p.gameserver.model.base.ClassId


    short ETERNITY_DIAMOND_ID = 1230;
    short LEAF_OF_ORACLE_ID = 1235;
    short BEAD_OF_SEASON_ID = 1292;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "No Quest";
    if(event == 26 && classId == ClassId.elvenMage)
    {
      if(Level <= 19 && pl.getInventory().getItemByItemId(ETERNITY_DIAMOND_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.elvenFighter)
    {
      htmltext = "01.htm";
    }
    else if(classId == ClassId.elvenMage)
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

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

      return;
    }
    short RING_OF_RAVEN_ID = 1642;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "No Quest";
    if(event == 54 && classId == ClassId.dwarvenFighter)
    {
      if(Level <= 19 && pl.getInventory().getItemByItemId(RING_OF_RAVEN_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.dwarvenFighter)
    {
      htmltext = "01.htm";
    }
    else if(classId == ClassId.scavenger || classId == ClassId.artisan)
View Full Code Here

      return;
    }
    short PASS_FINAL_ID = 1635;
    short event = Short.parseShort(args[0]);
    int Level = pl.getLevel();
    ClassId classId = pl.getClassId();
    String htmltext = "No Quest";
    if(event == 56 && classId == ClassId.dwarvenFighter)
    {
      if(Level <= 19 && pl.getInventory().getItemByItemId(PASS_FINAL_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.dwarvenFighter)
    {
      htmltext = "01.htm";
    }
    else if(classId == ClassId.artisan)
View Full Code Here

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

    {
      show("I have nothing to say you", pl, npc);
      return;
    }
    String htmltext;
    ClassId classId = pl.getClassId();
    if(classId == ClassId.artisan)
    {
      htmltext = "01.htm";
    }
    else if(classId == ClassId.dwarvenFighter)
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.