|
@@ -0,0 +1,313 @@
|
|
|
+/*
|
|
|
+ * 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.Q309_ForAGoodCause;
|
|
|
+
|
|
|
+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.network.serverpackets.RadarControl;
|
|
|
+import com.l2jserver.gameserver.util.Util;
|
|
|
+import com.l2jserver.util.Rnd;
|
|
|
+
|
|
|
+/**
|
|
|
+ * For A Good Cause (309)
|
|
|
+ * 2011/09/30 Based on official server Naia
|
|
|
+ * Thanks to Belgarion
|
|
|
+ *
|
|
|
+ * @author nonom, Zoey76
|
|
|
+ */
|
|
|
+public class Q309_ForAGoodCause extends Quest
|
|
|
+{
|
|
|
+ private static final String qn = "309_ForAGoodCause";
|
|
|
+
|
|
|
+ // NPC's
|
|
|
+ private static final int ATRA = 32647;
|
|
|
+
|
|
|
+ // Mobs
|
|
|
+ private static final int CONTAMINATED_MUCROKIAN = 22654;
|
|
|
+ private static final int CHANGED_MUCROKIAN = 22655;
|
|
|
+ private static final int[] MUCROKIANS = { 22650, 22651, 22652, 22653 };
|
|
|
+
|
|
|
+ // Quest Items
|
|
|
+ private static final int MUCROKIAN_HIDE = 14873;
|
|
|
+ private static final int FALLEN_MUCROKIAN_HIDE = 14874;
|
|
|
+
|
|
|
+ private static final int MUCROKIAN_HIDE_CHANCE = 50;
|
|
|
+ private static final int FALLEN_HIDE_CHANCE = 50;
|
|
|
+
|
|
|
+ // Rewards
|
|
|
+ private static final int REC_DYNASTY_EARRINGS_70 = 9985;
|
|
|
+ private static final int REC_DYNASTY_NECKLACE_70 = 9986;
|
|
|
+ private static final int REC_DYNASTY_RING_70 = 9987;
|
|
|
+ private static final int REC_DYNASTY_SIGIL_60 = 10115;
|
|
|
+
|
|
|
+ private static final int REC_MOIRAI_CIRCLET_60 = 15777;
|
|
|
+ private static final int REC_MOIRAI_TUNIC_60 = 15780;
|
|
|
+ private static final int REC_MOIRAI_STOCKINGS_60 = 15783;
|
|
|
+ private static final int REC_MOIRAI_GLOVES_60 = 15786;
|
|
|
+ private static final int REC_MOIRAI_SHOES_60 = 15789;
|
|
|
+ private static final int REC_MOIRAI_SIGIL_60 = 15790;
|
|
|
+ private static final int REC_MOIRAI_EARRING_70 = 15814;
|
|
|
+ private static final int REC_MOIRAI_NECKLACE_70 = 15813;
|
|
|
+ private static final int REC_MOIRAI_RING_70 = 15812;
|
|
|
+
|
|
|
+ private static final int[] MOIRAI_PIECES = {
|
|
|
+ 15647,15650,15653,15656,15659,15692,15772,15773,15774
|
|
|
+ };
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
|
|
+ {
|
|
|
+ String htmltext = event;
|
|
|
+ QuestState st = player.getQuestState(qn);
|
|
|
+ QuestState qs = player.getQuestState("239_WontYouJoinUs");
|
|
|
+
|
|
|
+ if (st == null)
|
|
|
+ return htmltext;
|
|
|
+
|
|
|
+ if (event.equalsIgnoreCase("32647-05.htm"))
|
|
|
+ {
|
|
|
+ st.setState(State.STARTED);
|
|
|
+ st.set("cond", "1");
|
|
|
+ st.playSound("ItemSound.quest_accept");
|
|
|
+ player.sendPacket(new RadarControl(0, 2, 77325, 205773, -3432));
|
|
|
+ }
|
|
|
+ else if (event.equalsIgnoreCase("claimreward"))
|
|
|
+ {
|
|
|
+ if (qs != null)
|
|
|
+ if (qs.isCompleted())
|
|
|
+ htmltext = "32647-11.htm";
|
|
|
+ else
|
|
|
+ htmltext = "32647-10.htm";
|
|
|
+
|
|
|
+ htmltext = "32647-09.htm";
|
|
|
+ }
|
|
|
+ else if (event.equalsIgnoreCase("receivepieces"))
|
|
|
+ {
|
|
|
+ htmltext = onPiecesExchangeRequest(st, MOIRAI_PIECES[Rnd.get(MOIRAI_PIECES.length-1)], 100);
|
|
|
+ }
|
|
|
+ else if(Util.isDigit(event))
|
|
|
+ {
|
|
|
+ int val = Integer.parseInt(event);
|
|
|
+ switch (val)
|
|
|
+ {
|
|
|
+ case 96:
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_DYNASTY_EARRINGS_70, FALLEN_MUCROKIAN_HIDE, Integer.parseInt(event));
|
|
|
+ break;
|
|
|
+ case 192:
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_DYNASTY_EARRINGS_70, MUCROKIAN_HIDE, Integer.parseInt(event));
|
|
|
+ break;
|
|
|
+ case 256:
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_DYNASTY_NECKLACE_70, MUCROKIAN_HIDE, Integer.parseInt(event));
|
|
|
+ break;
|
|
|
+ case 64:
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_DYNASTY_RING_70, FALLEN_MUCROKIAN_HIDE, Integer.parseInt(event));
|
|
|
+ break;
|
|
|
+ case 103:
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_DYNASTY_SIGIL_60, FALLEN_MUCROKIAN_HIDE, Integer.parseInt(event));
|
|
|
+ break;
|
|
|
+ case 206:
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_DYNASTY_SIGIL_60, MUCROKIAN_HIDE, Integer.parseInt(event));
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(event.startsWith("circlet"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_CIRCLET_60, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_CIRCLET_60, MUCROKIAN_HIDE, 180);
|
|
|
+ }
|
|
|
+ else if(event.startsWith("stockings"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_STOCKINGS_60, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_STOCKINGS_60, MUCROKIAN_HIDE, 180);
|
|
|
+ }
|
|
|
+ else if(event.startsWith("tunic"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_TUNIC_60, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_TUNIC_60, FALLEN_MUCROKIAN_HIDE, 180);
|
|
|
+ }
|
|
|
+ else if(event.startsWith("gloves"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_GLOVES_60, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_GLOVES_60, MUCROKIAN_HIDE, 180);
|
|
|
+ }
|
|
|
+ else if(event.startsWith("shoes"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_SHOES_60, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_SHOES_60, MUCROKIAN_HIDE, 180);
|
|
|
+ }
|
|
|
+ else if(event.startsWith("sigil"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_SIGIL_60, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_SIGIL_60, MUCROKIAN_HIDE, 180);
|
|
|
+ }
|
|
|
+ else if(event.startsWith("earring"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_EARRING_70, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_EARRING_70, MUCROKIAN_HIDE, 180);
|
|
|
+ }
|
|
|
+ else if(event.startsWith("necklace"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_NECKLACE_70, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_NECKLACE_70, MUCROKIAN_HIDE, 180);
|
|
|
+ else if (event.endsWith("128"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_DYNASTY_NECKLACE_70, MUCROKIAN_HIDE, 128);
|
|
|
+ }
|
|
|
+ else if(event.startsWith("ring"))
|
|
|
+ {
|
|
|
+ if (event.endsWith("90"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_RING_70, FALLEN_MUCROKIAN_HIDE, 90);
|
|
|
+ else if (event.endsWith("180"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_MOIRAI_RING_70, MUCROKIAN_HIDE, 180);
|
|
|
+ else if (event.endsWith("128"))
|
|
|
+ htmltext = onRecipeExchangeRequest(st, REC_DYNASTY_RING_70, MUCROKIAN_HIDE, 128);
|
|
|
+ }
|
|
|
+ else if (event.equalsIgnoreCase("32647-14.htm") || event.equalsIgnoreCase("32647-07.htm"))
|
|
|
+ {
|
|
|
+ st.exitQuest(true);
|
|
|
+ st.playSound("ItemSound.quest_finish");
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String onTalk(L2Npc npc, L2PcInstance player)
|
|
|
+ {
|
|
|
+ String htmltext = getNoQuestMsg(player);
|
|
|
+ QuestState st = player.getQuestState(qn);
|
|
|
+ QuestState _prev = player.getQuestState("308_ReedFieldMaintenance");
|
|
|
+
|
|
|
+ if (st == null)
|
|
|
+ return htmltext;
|
|
|
+
|
|
|
+ if (npc.getNpcId() == ATRA)
|
|
|
+ {
|
|
|
+ if ((_prev!=null) && _prev.isStarted()){
|
|
|
+ htmltext = "32647-17.htm";
|
|
|
+ }else if (st.isStarted()){
|
|
|
+ if(st.getQuestItemsCount(MUCROKIAN_HIDE) >= 1 || st.getQuestItemsCount(FALLEN_MUCROKIAN_HIDE) >= 1)
|
|
|
+ htmltext = "32647-08.htm";
|
|
|
+ else
|
|
|
+ htmltext = "32647-06.htm";
|
|
|
+ }else{
|
|
|
+ if(player.getLevel() >= 82){
|
|
|
+ htmltext = "32647-01.htm";
|
|
|
+ }else{
|
|
|
+ htmltext = "32647-00.htm";
|
|
|
+ st.exitQuest(true);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return htmltext;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String onKill(L2Npc npc, L2PcInstance player, boolean isPet)
|
|
|
+ {
|
|
|
+ QuestState st = player.getQuestState(qn);
|
|
|
+ if (st == null)
|
|
|
+ return null;
|
|
|
+
|
|
|
+ if(st.getInt("cond") == 1)
|
|
|
+ {
|
|
|
+ if (Util.contains(MUCROKIANS,npc.getNpcId()))
|
|
|
+ if (st.getRandom(100) < MUCROKIAN_HIDE_CHANCE)
|
|
|
+ {
|
|
|
+ st.giveItems(MUCROKIAN_HIDE,1);
|
|
|
+ st.playSound("ItemSound.quest_itemget");
|
|
|
+ }
|
|
|
+ else if (npc.getNpcId()==CHANGED_MUCROKIAN)
|
|
|
+ if (st.getRandom(100) < FALLEN_HIDE_CHANCE)
|
|
|
+ {
|
|
|
+ st.giveItems(FALLEN_MUCROKIAN_HIDE,1);
|
|
|
+ st.playSound("ItemSound.quest_itemget");
|
|
|
+ }
|
|
|
+ else if (npc.getNpcId()==CONTAMINATED_MUCROKIAN)
|
|
|
+ if (st.getRandom(100) < 10)
|
|
|
+ {
|
|
|
+ st.giveItems(MUCROKIAN_HIDE,1);
|
|
|
+ st.playSound("ItemSound.quest_itemget");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return super.onKill(npc, player, isPet);
|
|
|
+ }
|
|
|
+
|
|
|
+ private String onPiecesExchangeRequest(QuestState st, int pieces,int event)
|
|
|
+ {
|
|
|
+ long h1 = st.getQuestItemsCount(MUCROKIAN_HIDE);
|
|
|
+ if (h1 >= event)
|
|
|
+ {
|
|
|
+ st.giveItems(pieces,Rnd.get(1,4));
|
|
|
+ st.takeItems(MUCROKIAN_HIDE,event);
|
|
|
+ st.playSound("ItemSound.quest_finish");
|
|
|
+ return "32647-16.htm";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return "32647-15.htm";
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private String onRecipeExchangeRequest(QuestState st, int recipe, int takeid, int quanty)
|
|
|
+ {
|
|
|
+ long h1 = st.getQuestItemsCount(takeid);
|
|
|
+ if (h1 >= quanty)
|
|
|
+ {
|
|
|
+ st.giveItems(recipe, 1);
|
|
|
+ st.takeItems(takeid, quanty);
|
|
|
+ st.playSound("ItemSound.quest_finish");
|
|
|
+ return "32647-16.htm";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return "32647-15.htm";
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public Q309_ForAGoodCause(int id, String name, String descr)
|
|
|
+ {
|
|
|
+ super(id, name, descr);
|
|
|
+
|
|
|
+ addStartNpc(ATRA);
|
|
|
+ addTalkId(ATRA);
|
|
|
+
|
|
|
+ for(int _mob : MUCROKIANS)
|
|
|
+ addKillId(_mob);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void main(String[] args)
|
|
|
+ {
|
|
|
+ new Q309_ForAGoodCause(309, "309_ForAGoodCause", "For A Good Cause");
|
|
|
+ }
|
|
|
+}
|