Package l2p.gameserver.model.instances

Examples of l2p.gameserver.model.instances.L2NpcInstance.deleteMe()


    else if(event.equalsIgnoreCase("Wait4"))
    {
      L2NpcInstance isQuest = L2ObjectsStorage.getByNpcId(CrimsonWerewolf);
      if(isQuest != null)
      {
        isQuest.deleteMe();
      }
      if(st.getInt("cond") == 12)
      {
        st.set("cond", "11");
      }
View Full Code Here


    else if(event.equalsIgnoreCase("Wait5"))
    {
      L2NpcInstance isQuest = L2ObjectsStorage.getByNpcId(KrudelLizardman);
      if(isQuest != null)
      {
        isQuest.deleteMe();
      }
      if(st.getInt("cond") == 15)
      {
        st.set("cond", "14");
      }
View Full Code Here

        st.set("cond", "8");
        st.setState(STARTED);
        L2NpcInstance isQuest = L2ObjectsStorage.getByNpcId(OlMahumInspector);
        if(isQuest != null)
        {
          isQuest.deleteMe();
        }
        isQuest = L2ObjectsStorage.getByNpcId(OlMahumPilgrimNPC);
        if(isQuest != null)
        {
          isQuest.deleteMe();
View Full Code Here

          isQuest.deleteMe();
        }
        isQuest = L2ObjectsStorage.getByNpcId(OlMahumPilgrimNPC);
        if(isQuest != null)
        {
          isQuest.deleteMe();
        }
        QuestTimer timer = st.getQuestTimer("Wait2");
        if(timer != null)
        {
          timer.cancel();
View Full Code Here

    else if(npcId == Aruraune)
    {
      L2NpcInstance isQuest = L2ObjectsStorage.getByNpcId(Aruraune);
      if(isQuest != null)
      {
        isQuest.deleteMe();
      }
      if(cond == 2)
      {
        if(st.getQuestItemsCount(HugeNail) == 0)
        {
View Full Code Here

    else if(npcId == OlMahumInspector)
    {
      L2NpcInstance isQuest = L2ObjectsStorage.getByNpcId(OlMahumInspector);
      if(isQuest != null)
      {
        isQuest.deleteMe();
      }
      QuestTimer timer = st.getQuestTimer("Wait2");
      if(timer != null)
      {
        timer.cancel();
View Full Code Here

    else if(npcId == OlMahumBetrayer)
    {
      L2NpcInstance isQuest = L2ObjectsStorage.getByNpcId(OlMahumBetrayer);
      if(isQuest != null)
      {
        isQuest.deleteMe();
      }
      QuestTimer timer = st.getQuestTimer("Wait3");
      if(timer != null)
      {
        timer.cancel();
View Full Code Here

    else if(npcId == CrimsonWerewolf)
    {
      L2NpcInstance isQuest = L2ObjectsStorage.getByNpcId(CrimsonWerewolf);
      if(isQuest != null)
      {
        isQuest.deleteMe();
      }
      QuestTimer timer = st.getQuestTimer("Wait4");
      if(timer != null)
      {
        timer.cancel();
View Full Code Here

    else if(npcId == KrudelLizardman)
    {
      L2NpcInstance isQuest = L2ObjectsStorage.getByNpcId(KrudelLizardman);
      if(isQuest != null)
      {
        isQuest.deleteMe();
      }
      QuestTimer timer = st.getQuestTimer("Wait5");
      if(timer != null)
      {
        timer.cancel();
View Full Code Here

      st.giveItems(MESSAGE, 1);
      st.playSound(SOUND_MIDDLE);
      L2NpcInstance n = L2ObjectsStorage.getByNpcId(ANGEL);
      if(n != null)
      {
        n.deleteMe();
      }
    }
    return htmltext;
  }
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.