/*
* Copyright (C) 2004-2014 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.Q00155_FindSirWindawood;
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;
/**
* Find Sir Windawood (155)
* @author malyelfik
*/
public class Q00155_FindSirWindawood extends Quest
{
// NPCs
private static final int ABELLOS = 30042;
private static final int SIR_COLLIN_WINDAWOOD = 30311;
// Items
private static final int OFFICIAL_LETTER = 1019;
private static final int HASTE_POTION = 734;
// Misc
private static final int MIN_LEVEL = 3;
public Q00155_FindSirWindawood()
{
super(155, Q00155_FindSirWindawood.class.getSimpleName(), "Find Sir Windawood");
addStartNpc(ABELLOS);
addTalkId(ABELLOS, SIR_COLLIN_WINDAWOOD);
registerQuestItems(OFFICIAL_LETTER);
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
final QuestState st = player.getQuestState(getName());
if ((st != null) && event.equalsIgnoreCase("30042-03.htm"))
{
st.startQuest();
st.giveItems(OFFICIAL_LETTER, 1);
return event;
}
return null;
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = getNoQuestMsg(player);
final QuestState st = player.getQuestState(getName());
if (st == null)
{
return htmltext;
}
switch (npc.getId())
{
case ABELLOS:
switch (st.getState())
{
case State.CREATED:
htmltext = (player.getLevel() >= MIN_LEVEL) ? "30042-02.htm" : "30042-01.htm";
break;
case State.STARTED:
htmltext = "30042-04.html";
break;
case State.COMPLETED:
htmltext = getAlreadyCompletedMsg(player);
break;
}
break;
case SIR_COLLIN_WINDAWOOD:
if (st.isStarted() && st.hasQuestItems(OFFICIAL_LETTER))
{
st.giveItems(HASTE_POTION, 1);
st.exitQuest(false, true);
htmltext = "30311-01.html";
}
break;
}
return htmltext;
}
}