Package quests

Source Code of quests._138_TempleChampionPart2

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package quests;

import lineage2.gameserver.model.Player;
import lineage2.gameserver.model.instances.NpcInstance;
import lineage2.gameserver.model.quest.Quest;
import lineage2.gameserver.model.quest.QuestState;
import lineage2.gameserver.scripts.ScriptFile;

public class _138_TempleChampionPart2 extends Quest implements ScriptFile
{
  private static final int SYLVAIN = 30070;
  private static final int PUPINA = 30118;
  private static final int ANGUS = 30474;
  private static final int SLA = 30666;
  private static final int MANIFESTO = 10341;
  private static final int RELIC = 10342;
  private static final int ANGUS_REC = 10343;
  private static final int PUPINA_REC = 10344;
  private final static int Wyrm = 20176;
  private final static int GuardianBasilisk = 20550;
  private final static int RoadScavenger = 20551;
  private final static int FetteredSoul = 20552;
 
  @Override
  public void onLoad()
  {
  }
 
  @Override
  public void onReload()
  {
  }
 
  @Override
  public void onShutdown()
  {
  }
 
  public _138_TempleChampionPart2()
  {
    super(false);
    addFirstTalkId(SYLVAIN);
    addTalkId(SYLVAIN, PUPINA, ANGUS, SLA);
    addKillId(Wyrm, GuardianBasilisk, RoadScavenger, FetteredSoul);
    addQuestItem(MANIFESTO, RELIC, ANGUS_REC, PUPINA_REC);
  }
 
  @Override
  public String onFirstTalk(NpcInstance npc, Player player)
  {
    QuestState qs = player.getQuestState(_137_TempleChampionPart1.class);
    if ((qs != null) && qs.isCompleted() && (player.getQuestState(getClass()) == null))
    {
      newQuestState(player, STARTED);
    }
    return "";
  }
 
  @Override
  public String onEvent(String event, QuestState st, NpcInstance npc)
  {
    String htmltext = event;
    if (event.equalsIgnoreCase("sylvain_q0138_04.htm"))
    {
      st.setCond(1);
      st.playSound(SOUND_ACCEPT);
      st.giveItems(MANIFESTO, 1);
    }
    else if (event.equalsIgnoreCase("sylvain_q0138_09.htm"))
    {
      st.giveItems(ADENA_ID, 84593);
      st.playSound(SOUND_FINISH);
      st.exitCurrentQuest(false);
    }
    else if (event.equalsIgnoreCase("sylvain_q0138_06.htm"))
    {
      st.setCond(2);
      st.playSound(SOUND_MIDDLE);
    }
    else if (event.equalsIgnoreCase("pupina_q0138_08.htm"))
    {
      st.setCond(3);
      st.playSound(SOUND_MIDDLE);
    }
    else if (event.equalsIgnoreCase("pupina_q0138_11.htm"))
    {
      st.setCond(6);
      st.playSound(SOUND_MIDDLE);
      st.set("talk", "0");
      st.giveItems(PUPINA_REC, 1);
    }
    else if (event.equalsIgnoreCase("grandmaster_angus_q0138_03.htm"))
    {
      st.setCond(4);
      st.playSound(SOUND_MIDDLE);
    }
    else if (event.equalsIgnoreCase("preacher_sla_q0138_03.htm"))
    {
      st.set("talk", "1");
      st.takeItems(PUPINA_REC, -1);
    }
    else if (event.equalsIgnoreCase("preacher_sla_q0138_05.htm"))
    {
      st.set("talk", "2");
      st.takeItems(MANIFESTO, -1);
    }
    else if (event.equalsIgnoreCase("preacher_sla_q0138_12.htm"))
    {
      st.setCond(7);
      st.playSound(SOUND_MIDDLE);
      st.unset("talk");
    }
    return htmltext;
  }
 
  @Override
  public String onTalk(NpcInstance npc, QuestState st)
  {
    String htmltext = "noquest";
    int npcId = npc.getNpcId();
    int cond = st.getCond();
    if (npcId == SYLVAIN)
    {
      if (cond == 0)
      {
        if (st.getPlayer().getLevel() >= 36)
        {
          htmltext = "sylvain_q0138_01.htm";
        }
        else
        {
          htmltext = "sylvain_q0138_03.htm";
        }
      }
      else if (cond == 1)
      {
        htmltext = "sylvain_q0138_04.htm";
      }
      else if ((cond >= 2) && (cond <= 6))
      {
        htmltext = "sylvain_q0138_06.htm";
      }
      else if (cond == 7)
      {
        htmltext = "sylvain_q0138_08.htm";
      }
    }
    else if (npcId == PUPINA)
    {
      if (cond == 2)
      {
        htmltext = "pupina_q0138_02.htm";
      }
      else if ((cond == 3) || (cond == 4))
      {
        htmltext = "pupina_q0138_09.htm";
      }
      else if (cond == 5)
      {
        htmltext = "pupina_q0138_10.htm";
        st.takeItems(ANGUS_REC, -1);
      }
      else if (cond == 6)
      {
        htmltext = "pupina_q0138_13.htm";
      }
    }
    else if (npcId == ANGUS)
    {
      if (cond == 3)
      {
        htmltext = "grandmaster_angus_q0138_02.htm";
      }
      else if (cond == 4)
      {
        if (st.getQuestItemsCount(RELIC) >= 10)
        {
          htmltext = "grandmaster_angus_q0138_05.htm";
          st.takeItems(RELIC, -1);
          st.giveItems(ANGUS_REC, 1);
          st.setCond(5);
          st.playSound(SOUND_MIDDLE);
        }
        else
        {
          htmltext = "grandmaster_angus_q0138_04.htm";
        }
      }
      else if (cond == 5)
      {
        htmltext = "grandmaster_angus_q0138_06.htm";
      }
    }
    else if (npcId == SLA)
    {
      if (cond == 6)
      {
        if (st.getInt("talk") == 0)
        {
          htmltext = "preacher_sla_q0138_02.htm";
        }
        else if (st.getInt("talk") == 1)
        {
          htmltext = "preacher_sla_q0138_03.htm";
        }
        else if (st.getInt("talk") == 2)
        {
          htmltext = "preacher_sla_q0138_05.htm";
        }
      }
      else if (cond == 7)
      {
        htmltext = "preacher_sla_q0138_13.htm";
      }
    }
    return htmltext;
  }
 
  @Override
  public String onKill(NpcInstance npc, QuestState st)
  {
    if (st.getState() != STARTED)
    {
      return null;
    }
    if (st.getCond() == 4)
    {
      if (st.getQuestItemsCount(RELIC) < 10)
      {
        st.giveItems(RELIC, 1);
        if (st.getQuestItemsCount(RELIC) >= 10)
        {
          st.playSound(SOUND_MIDDLE);
        }
        else
        {
          st.playSound(SOUND_ITEMGET);
        }
      }
    }
    return null;
  }
}
TOP

Related Classes of quests._138_TempleChampionPart2

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.