|
@@ -0,0 +1,244 @@
|
|
|
+/*
|
|
|
+ * Copyright (C) 2004-2013 L2J DataPack
|
|
|
+ *
|
|
|
+ * This file is part of L2J DataPack.
|
|
|
+ *
|
|
|
+ * L2J DataPack 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.
|
|
|
+ *
|
|
|
+ * L2J DataPack 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.Q10287_StoryOfThoseLeft;
|
|
|
+
|
|
|
+import quests.Q10286_ReunionWithSirra.Q10286_ReunionWithSirra;
|
|
|
+
|
|
|
+import com.l2jserver.gameserver.instancemanager.InstanceManager;
|
|
|
+import com.l2jserver.gameserver.model.Location;
|
|
|
+import com.l2jserver.gameserver.model.actor.L2Npc;
|
|
|
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
|
|
|
+import com.l2jserver.gameserver.model.instancezone.InstanceWorld;
|
|
|
+import com.l2jserver.gameserver.model.quest.Quest;
|
|
|
+import com.l2jserver.gameserver.model.quest.QuestState;
|
|
|
+import com.l2jserver.gameserver.model.quest.State;
|
|
|
+import com.l2jserver.gameserver.util.Util;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Story of Those Left (10287)
|
|
|
+ * @author Adry_85
|
|
|
+ */
|
|
|
+public final class Q10287_StoryOfThoseLeft extends Quest
|
|
|
+{
|
|
|
+ // NPCs
|
|
|
+ private static final int RAFFORTY = 32020;
|
|
|
+ private static final int JINIA = 32760;
|
|
|
+ private static final int KEGOR = 32761;
|
|
|
+ // Misc
|
|
|
+ private static final int MIN_LEVEL = 82;
|
|
|
+ // Location
|
|
|
+ private static final Location EXIT_LOC = new Location(113793, -109342, -845, 0);
|
|
|
+
|
|
|
+ private Q10287_StoryOfThoseLeft()
|
|
|
+ {
|
|
|
+ super(10287, Q10287_StoryOfThoseLeft.class.getSimpleName(), "Story of Those Left");
|
|
|
+ addStartNpc(RAFFORTY);
|
|
|
+ addTalkId(RAFFORTY, JINIA, KEGOR);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
|
|
+ {
|
|
|
+ final QuestState st = getQuestState(player, false);
|
|
|
+ if (st == null)
|
|
|
+ {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ String htmltext = null;
|
|
|
+ switch (event)
|
|
|
+ {
|
|
|
+ case "32020-02.htm":
|
|
|
+ {
|
|
|
+ st.startQuest();
|
|
|
+ st.setMemoState(1);
|
|
|
+ htmltext = event;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "32020-08.html":
|
|
|
+ {
|
|
|
+ if (st.isMemoState(2))
|
|
|
+ {
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "32760-02.html":
|
|
|
+ {
|
|
|
+ if (st.isMemoState(1))
|
|
|
+ {
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "32760-03.html":
|
|
|
+ {
|
|
|
+ if (st.isMemoState(1))
|
|
|
+ {
|
|
|
+ st.set("ex1", 1);
|
|
|
+ st.setCond(3, true);
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "32760-06.html":
|
|
|
+ {
|
|
|
+ if (st.isMemoState(2))
|
|
|
+ {
|
|
|
+ st.setCond(5, true);
|
|
|
+ player.teleToLocation(EXIT_LOC, 0);
|
|
|
+ htmltext = event; // TODO: missing "jinia_npc_q10287_06.htm"
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "32761-02.html":
|
|
|
+ {
|
|
|
+ if (st.isMemoState(1) && (st.getInt("ex1") == 1) && (st.getInt("ex2") == 0))
|
|
|
+ {
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "32761-03.html":
|
|
|
+ {
|
|
|
+ if (st.isMemoState(1) && (st.getInt("ex1") == 1) && (st.getInt("ex2") == 0))
|
|
|
+ {
|
|
|
+ st.set("ex2", 1);
|
|
|
+ st.setCond(4, true);
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (Util.isDigit(event) && st.isMemoState(2))
|
|
|
+ {
|
|
|
+ st.rewardItems(Integer.valueOf(event), 1);
|
|
|
+ htmltext = "32020-09.html";
|
|
|
+ st.exitQuest(false, true);
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onTalk(L2Npc npc, L2PcInstance player)
|
|
|
+ {
|
|
|
+ QuestState st = getQuestState(player, true);
|
|
|
+ String htmltext = getNoQuestMsg(player);
|
|
|
+ if (st == null)
|
|
|
+ {
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ switch (st.getState())
|
|
|
+ {
|
|
|
+ case State.COMPLETED:
|
|
|
+ {
|
|
|
+ if (npc.getId() == RAFFORTY)
|
|
|
+ {
|
|
|
+ htmltext = "32020-04.html";
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case State.CREATED:
|
|
|
+ {
|
|
|
+ if (npc.getId() == RAFFORTY)
|
|
|
+ {
|
|
|
+ st = player.getQuestState(Q10286_ReunionWithSirra.class.getSimpleName());
|
|
|
+ htmltext = ((player.getLevel() >= MIN_LEVEL) && (st != null) && (st.isCompleted())) ? "32020-01.htm" : "32020-03.htm";
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case State.STARTED:
|
|
|
+ {
|
|
|
+ switch (npc.getId())
|
|
|
+ {
|
|
|
+ case RAFFORTY:
|
|
|
+ {
|
|
|
+ if (st.isMemoState(1))
|
|
|
+ {
|
|
|
+ htmltext = (player.getLevel() >= MIN_LEVEL) ? "32020-05.html" : "32020-06.html";
|
|
|
+ }
|
|
|
+ else if (st.isMemoState(2))
|
|
|
+ {
|
|
|
+ htmltext = "32020-07.html";
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case JINIA:
|
|
|
+ {
|
|
|
+ if (st.isMemoState(1))
|
|
|
+ {
|
|
|
+ final int state1 = st.getInt("ex1");
|
|
|
+ final int state2 = st.getInt("ex2");
|
|
|
+ if ((state1 == 0) && (state2 == 0))
|
|
|
+ {
|
|
|
+ htmltext = "32760-01.html";
|
|
|
+ }
|
|
|
+ else if ((state1 == 1) && (state2 == 0))
|
|
|
+ {
|
|
|
+ htmltext = "32760-04.html";
|
|
|
+ }
|
|
|
+ else if ((state1 == 1) && (state2 == 1))
|
|
|
+ {
|
|
|
+ st.setCond(5, true);
|
|
|
+ st.setMemoState(2);
|
|
|
+ st.unset("ex1");
|
|
|
+ st.unset("ex2");
|
|
|
+ final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player);
|
|
|
+ world.removeAllowed(player.getObjectId());
|
|
|
+ player.setInstanceId(0);
|
|
|
+ htmltext = "32760-05.html";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case KEGOR:
|
|
|
+ {
|
|
|
+ if (st.isMemoState(1))
|
|
|
+ {
|
|
|
+ final int state1 = st.getInt("ex1");
|
|
|
+ final int state2 = st.getInt("ex2");
|
|
|
+ if ((state1 == 1) && (state2 == 0))
|
|
|
+ {
|
|
|
+ htmltext = "32761-01.html";
|
|
|
+ }
|
|
|
+ else if ((state1 == 0) && (state2 == 0))
|
|
|
+ {
|
|
|
+ htmltext = "32761-04.html";
|
|
|
+ }
|
|
|
+ else if ((state1 == 1) && (state2 == 1))
|
|
|
+ {
|
|
|
+ htmltext = "32761-05.html";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void main(String args[])
|
|
|
+ {
|
|
|
+ new Q10287_StoryOfThoseLeft();
|
|
|
+ }
|
|
|
+}
|