123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /*
- * 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.Q00249_PoisonedPlainsOfTheLizardmen;
- 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;
- /**
- * Poisoned Plains of the Lizardmen (249)
- * @author Gnacik
- * @version 2010-08-04 Based on Freya PTS
- */
- public class Q00249_PoisonedPlainsOfTheLizardmen extends Quest
- {
- // NPCs
- private static final int MOUEN = 30196;
- private static final int JOHNNY = 32744;
-
- public Q00249_PoisonedPlainsOfTheLizardmen()
- {
- super(249, Q00249_PoisonedPlainsOfTheLizardmen.class.getSimpleName(), "Poisoned Plains of the Lizardmen");
- addStartNpc(MOUEN);
- addTalkId(MOUEN, JOHNNY);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- String htmltext = event;
- final QuestState st = getQuestState(player, false);
- if (st == null)
- {
- return htmltext;
- }
-
- if (npc.getId() == MOUEN)
- {
- if (event.equalsIgnoreCase("30196-03.htm"))
- {
- st.startQuest();
- }
- }
- else if ((npc.getId() == JOHNNY) && event.equalsIgnoreCase("32744-03.htm"))
- {
- st.giveAdena(83056, true);
- st.addExpAndSp(477496, 58743);
- st.exitQuest(false, true);
- }
- return htmltext;
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance player)
- {
- String htmltext = getNoQuestMsg(player);
- final QuestState st = getQuestState(player, true);
- if (st == null)
- {
- return htmltext;
- }
-
- if (npc.getId() == MOUEN)
- {
- switch (st.getState())
- {
- case State.CREATED:
- htmltext = (player.getLevel() >= 82) ? "30196-01.htm" : "30196-00.htm";
- break;
- case State.STARTED:
- if (st.isCond(1))
- {
- htmltext = "30196-04.htm";
- }
- break;
- case State.COMPLETED:
- htmltext = "30196-05.htm";
- break;
- }
- }
- else if (npc.getId() == JOHNNY)
- {
- if (st.isCond(1))
- {
- htmltext = "32744-01.htm";
- }
- else if (st.isCompleted())
- {
- htmltext = "32744-04.htm";
- }
- }
- return htmltext;
- }
- }
|