|
@@ -0,0 +1,402 @@
|
|
|
+/*
|
|
|
+ * Copyright (C) 2004-2015 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.Q00118_ToLeadAndBeLed;
|
|
|
+
|
|
|
+import quests.Q00123_TheLeaderAndTheFollower.Q00123_TheLeaderAndTheFollower;
|
|
|
+
|
|
|
+import com.l2jserver.gameserver.model.L2World;
|
|
|
+import com.l2jserver.gameserver.model.actor.L2Npc;
|
|
|
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
|
|
|
+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;
|
|
|
+
|
|
|
+/**
|
|
|
+ * To Lead And Be Led (118)
|
|
|
+ * @author ivantotov
|
|
|
+ */
|
|
|
+public final class Q00118_ToLeadAndBeLed extends Quest
|
|
|
+{
|
|
|
+ // NPC
|
|
|
+ private static final int BLACKSMITH_PINTER = 30298;
|
|
|
+ // Items
|
|
|
+ private static final int CRYSTAL_D = 1458;
|
|
|
+ private static final int BLOOD_OF_MAILLE_LIZARDMAN = 8062;
|
|
|
+ private static final int LEG_OF_KING_ARANEID = 8063;
|
|
|
+ // Reward
|
|
|
+ private static final int CLAN_OATH_HELM = 7850;
|
|
|
+ private static final int CLAN_OATH_ARMOR = 7851;
|
|
|
+ private static final int CLAN_OATH_GAUNTLETS_HEAVY_ARMOR = 7852;
|
|
|
+ private static final int CLAN_OATH_SABATON_HEAVY_ARMOR = 7853;
|
|
|
+ private static final int CLAN_OATH_BRIGANDINE = 7854;
|
|
|
+ private static final int CLAN_OATH_LEATHER_GLOVES_LIGHT_ARMOR = 7855;
|
|
|
+ private static final int CLAN_OATH_BOOTS_LIGHT_ARMOR = 7856;
|
|
|
+ private static final int CLAN_OATH_AKETON = 7857;
|
|
|
+ private static final int CLAN_OATH_PADDED_GLOVES_ROBE = 7858;
|
|
|
+ private static final int CLAN_OATH_SANDALS_ROBE = 7859;
|
|
|
+ // Monster
|
|
|
+ private static final int MAILLE_LIZARDMAN = 20919;
|
|
|
+ private static final int MAILLE_LIZARDMAN_SCOUT = 20920;
|
|
|
+ private static final int MAILLE_LIZARDMAN_GUARD = 20921;
|
|
|
+ private static final int KING_OF_THE_ARANEID = 20927;
|
|
|
+ // Misc
|
|
|
+ private static final int MIN_LEVEL = 19;
|
|
|
+ private static final int CRYSTAL_COUNT_1 = 922;
|
|
|
+ private static final int CRYSTAL_COUNT_2 = 771;
|
|
|
+
|
|
|
+ public Q00118_ToLeadAndBeLed()
|
|
|
+ {
|
|
|
+ super(118, Q00118_ToLeadAndBeLed.class.getSimpleName(), "To Lead And Be Led");
|
|
|
+ addStartNpc(BLACKSMITH_PINTER);
|
|
|
+ addTalkId(BLACKSMITH_PINTER);
|
|
|
+ addKillId(MAILLE_LIZARDMAN, MAILLE_LIZARDMAN_SCOUT, MAILLE_LIZARDMAN_GUARD, KING_OF_THE_ARANEID);
|
|
|
+ registerQuestItems(LEG_OF_KING_ARANEID, BLOOD_OF_MAILLE_LIZARDMAN);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
|
|
+ {
|
|
|
+ String htmltext = null;
|
|
|
+ // Manage Sponsor's quest events.
|
|
|
+ if (player.getApprentice() > 0)
|
|
|
+ {
|
|
|
+ final L2PcInstance apprentice = L2World.getInstance().getPlayer(player.getApprentice());
|
|
|
+ if (apprentice == null)
|
|
|
+ {
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ final QuestState q118 = apprentice.getQuestState(Q00118_ToLeadAndBeLed.class.getSimpleName());
|
|
|
+ switch (event)
|
|
|
+ {
|
|
|
+ case "sponsor":
|
|
|
+ {
|
|
|
+ if (!Util.checkIfInRange(1500, npc, apprentice, true))
|
|
|
+ {
|
|
|
+ htmltext = "30298-09.html";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ if ((q118 == null) || (!q118.isMemoState(2) && !q118.isMemoState(3)))
|
|
|
+ {
|
|
|
+ htmltext = "30298-14.html";
|
|
|
+ }
|
|
|
+ else if (q118.isMemoState(2))
|
|
|
+ {
|
|
|
+ htmltext = "30298-08.html";
|
|
|
+ }
|
|
|
+ else if (q118.isMemoState(3))
|
|
|
+ {
|
|
|
+ htmltext = "30298-12.html";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "30298-10.html":
|
|
|
+ {
|
|
|
+ if (Util.checkIfInRange(1500, npc, apprentice, true) && (q118 != null) && q118.isMemoState(2))
|
|
|
+ {
|
|
|
+ switch (q118.getMemoStateEx(1))
|
|
|
+ {
|
|
|
+ case 1:
|
|
|
+ {
|
|
|
+ if (getQuestItemsCount(player, CRYSTAL_D) >= CRYSTAL_COUNT_1)
|
|
|
+ {
|
|
|
+ takeItems(player, CRYSTAL_D, CRYSTAL_COUNT_1);
|
|
|
+ q118.setMemoState(3);
|
|
|
+ q118.setCond(6, true);
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30298-11.html";
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case 2:
|
|
|
+ case 3:
|
|
|
+ {
|
|
|
+ if (getQuestItemsCount(player, CRYSTAL_D) >= CRYSTAL_COUNT_2)
|
|
|
+ {
|
|
|
+ takeItems(player, CRYSTAL_D, CRYSTAL_COUNT_2);
|
|
|
+ q118.setMemoState(3);
|
|
|
+ q118.setCond(6, true);
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30298-11a.html";
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ final QuestState qs = getQuestState(player, false);
|
|
|
+ if (qs == null)
|
|
|
+ {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ switch (event)
|
|
|
+ {
|
|
|
+ case "30298-03.htm":
|
|
|
+ {
|
|
|
+ if (qs.isCreated())
|
|
|
+ {
|
|
|
+ qs.startQuest();
|
|
|
+ qs.setMemoState(1);
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "30298-05a.html":
|
|
|
+ case "30298-05b.html":
|
|
|
+ case "30298-05c.html":
|
|
|
+ case "30298-05g.html":
|
|
|
+ {
|
|
|
+ htmltext = event;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "30298-05d.html":
|
|
|
+ {
|
|
|
+ if (qs.isMemoState(1) && (getQuestItemsCount(player, BLOOD_OF_MAILLE_LIZARDMAN) >= 10))
|
|
|
+ {
|
|
|
+ takeItems(player, BLOOD_OF_MAILLE_LIZARDMAN, -1);
|
|
|
+ qs.setMemoState(2);
|
|
|
+ qs.setMemoStateEx(1, 1);
|
|
|
+ qs.setCond(3, true);
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "30298-05e.html":
|
|
|
+ {
|
|
|
+ if (qs.isMemoState(1) && (getQuestItemsCount(player, BLOOD_OF_MAILLE_LIZARDMAN) >= 10))
|
|
|
+ {
|
|
|
+ takeItems(player, BLOOD_OF_MAILLE_LIZARDMAN, -1);
|
|
|
+ qs.setMemoState(2);
|
|
|
+ qs.setMemoStateEx(1, 2);
|
|
|
+ qs.setCond(4, true);
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case "30298-05f.html":
|
|
|
+ {
|
|
|
+ if (qs.isMemoState(1) && (getQuestItemsCount(player, BLOOD_OF_MAILLE_LIZARDMAN) >= 10))
|
|
|
+ {
|
|
|
+ takeItems(player, BLOOD_OF_MAILLE_LIZARDMAN, -1);
|
|
|
+ qs.setMemoState(2);
|
|
|
+ qs.setMemoStateEx(1, 3);
|
|
|
+ qs.setCond(5, true);
|
|
|
+ htmltext = event;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
|
|
|
+ {
|
|
|
+ final QuestState qs = getQuestState(killer, false);
|
|
|
+ if ((qs != null) && qs.isStarted())
|
|
|
+ {
|
|
|
+ switch (npc.getId())
|
|
|
+ {
|
|
|
+ case MAILLE_LIZARDMAN:
|
|
|
+ case MAILLE_LIZARDMAN_SCOUT:
|
|
|
+ case MAILLE_LIZARDMAN_GUARD:
|
|
|
+ {
|
|
|
+ if (qs.isMemoState(1))
|
|
|
+ {
|
|
|
+ if (giveItemRandomly(killer, npc, BLOOD_OF_MAILLE_LIZARDMAN, 1, 10, 7, true))
|
|
|
+ {
|
|
|
+ qs.setCond(2);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case KING_OF_THE_ARANEID:
|
|
|
+ {
|
|
|
+ if (qs.isMemoState(4))
|
|
|
+ {
|
|
|
+ if (killer.getSponsor() > 0)
|
|
|
+ {
|
|
|
+ final L2PcInstance c0 = L2World.getInstance().getPlayer(killer.getSponsor());
|
|
|
+ if ((c0 != null) && Util.checkIfInRange(1500, npc, c0, true))
|
|
|
+ {
|
|
|
+ if (giveItemRandomly(killer, npc, LEG_OF_KING_ARANEID, 1, 8, 7, true))
|
|
|
+ {
|
|
|
+ qs.setCond(8);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return super.onKill(npc, killer, isSummon);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onTalk(L2Npc npc, L2PcInstance player)
|
|
|
+ {
|
|
|
+ final QuestState qs = getQuestState(player, true);
|
|
|
+ final QuestState q123 = player.getQuestState(Q00123_TheLeaderAndTheFollower.class.getSimpleName());
|
|
|
+ String htmltext = getNoQuestMsg(player);
|
|
|
+
|
|
|
+ switch (qs.getState())
|
|
|
+ {
|
|
|
+ case State.CREATED:
|
|
|
+ {
|
|
|
+ if ((q123 != null) && q123.isStarted())
|
|
|
+ {
|
|
|
+ htmltext = "30298-02b.html";
|
|
|
+ }
|
|
|
+ else if ((q123 != null) && q123.isCompleted())
|
|
|
+ {
|
|
|
+ htmltext = "30298-02a.htm";
|
|
|
+ }
|
|
|
+ else if ((player.getLevel() >= MIN_LEVEL) && (player.getPledgeType() == -1) && (player.getSponsor() > 0))
|
|
|
+ {
|
|
|
+ htmltext = "30298-01.htm";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30298-02.htm";
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case State.STARTED:
|
|
|
+ {
|
|
|
+ if (qs.isMemoState(1))
|
|
|
+ {
|
|
|
+ if (getQuestItemsCount(player, BLOOD_OF_MAILLE_LIZARDMAN) < 10)
|
|
|
+ {
|
|
|
+ htmltext = "30298-04.html";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ htmltext = "30298-05.html";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if (qs.isMemoState(2))
|
|
|
+ {
|
|
|
+ if (player.getSponsor() == 0)
|
|
|
+ {
|
|
|
+ if (qs.getMemoStateEx(1) == 1)
|
|
|
+ {
|
|
|
+ htmltext = "30298-06a.html";
|
|
|
+ }
|
|
|
+ else if (qs.getMemoStateEx(1) == 2)
|
|
|
+ {
|
|
|
+ htmltext = "30298-06b.html";
|
|
|
+ }
|
|
|
+ else if (qs.getMemoStateEx(1) == 3)
|
|
|
+ {
|
|
|
+ htmltext = "30298-06c.html";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ final L2PcInstance c0 = L2World.getInstance().getPlayer(player.getSponsor());
|
|
|
+ if ((c0 != null) && Util.checkIfInRange(1500, npc, c0, true))
|
|
|
+ {
|
|
|
+ htmltext = "30298-07.html";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ if (qs.getMemoStateEx(1) == 1)
|
|
|
+ {
|
|
|
+ htmltext = "30298-06.html";
|
|
|
+ }
|
|
|
+ else if (qs.getMemoStateEx(1) == 2)
|
|
|
+ {
|
|
|
+ htmltext = "30298-06d.html";
|
|
|
+ }
|
|
|
+ else if (qs.getMemoStateEx(1) == 3)
|
|
|
+ {
|
|
|
+ htmltext = "30298-06e.html";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if (qs.isMemoState(3))
|
|
|
+ {
|
|
|
+ qs.setMemoState(4);
|
|
|
+ qs.setCond(7, true);
|
|
|
+ htmltext = "30298-15.html";
|
|
|
+ }
|
|
|
+ else if (qs.isMemoState(4))
|
|
|
+ {
|
|
|
+ if (getQuestItemsCount(player, LEG_OF_KING_ARANEID) < 8)
|
|
|
+ {
|
|
|
+ htmltext = "30298-16.html";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ if (qs.getMemoStateEx(1) == 1)
|
|
|
+ {
|
|
|
+ giveItems(player, CLAN_OATH_HELM, 1);
|
|
|
+ giveItems(player, CLAN_OATH_ARMOR, 1);
|
|
|
+ giveItems(player, CLAN_OATH_GAUNTLETS_HEAVY_ARMOR, 1);
|
|
|
+ giveItems(player, CLAN_OATH_SABATON_HEAVY_ARMOR, 1);
|
|
|
+ takeItems(player, LEG_OF_KING_ARANEID, -1);
|
|
|
+ }
|
|
|
+ else if (qs.getMemoStateEx(1) == 2)
|
|
|
+ {
|
|
|
+ giveItems(player, CLAN_OATH_HELM, 1);
|
|
|
+ giveItems(player, CLAN_OATH_BRIGANDINE, 1);
|
|
|
+ giveItems(player, CLAN_OATH_LEATHER_GLOVES_LIGHT_ARMOR, 1);
|
|
|
+ giveItems(player, CLAN_OATH_BOOTS_LIGHT_ARMOR, 1);
|
|
|
+ takeItems(player, LEG_OF_KING_ARANEID, -1);
|
|
|
+ }
|
|
|
+ else if (qs.getMemoStateEx(1) == 3)
|
|
|
+ {
|
|
|
+ giveItems(player, CLAN_OATH_HELM, 1);
|
|
|
+ giveItems(player, CLAN_OATH_AKETON, 1);
|
|
|
+ giveItems(player, CLAN_OATH_PADDED_GLOVES_ROBE, 1);
|
|
|
+ giveItems(player, CLAN_OATH_SANDALS_ROBE, 1);
|
|
|
+ takeItems(player, LEG_OF_KING_ARANEID, -1);
|
|
|
+ }
|
|
|
+ qs.exitQuest(false, true);
|
|
|
+ htmltext = "30298-17.html";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case State.COMPLETED:
|
|
|
+ {
|
|
|
+ htmltext = getAlreadyCompletedMsg(player);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+}
|