/*
* 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 .
*/
package quests.Q00113_StatusOfTheBeaconTower;
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;
/**
* Status of the Beacon Tower (113)
* Original Jython script by Kerberos.
* @author malyelfik
*/
public class Q00113_StatusOfTheBeaconTower extends Quest
{
// NPCs
private static final int MOIRA = 31979;
private static final int TORRANT = 32016;
// Items
private static final int FLAME_BOX = 14860;
private static final int FIRE_BOX = 8086;
public Q00113_StatusOfTheBeaconTower()
{
super(113, Q00113_StatusOfTheBeaconTower.class.getSimpleName(), "Status of the Beacon Tower");
addStartNpc(MOIRA);
addTalkId(MOIRA, TORRANT);
registerQuestItems(FIRE_BOX, FLAME_BOX);
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
final QuestState st = getQuestState(player, false);
if (st == null)
{
return null;
}
String htmltext = event;
switch (event)
{
case "31979-02.htm":
st.startQuest();
st.giveItems(FLAME_BOX, 1);
break;
case "32016-02.html":
if (st.hasQuestItems(FIRE_BOX))
{
st.giveAdena(21578, true);
st.addExpAndSp(76665, 5333);
}
else
{
st.giveAdena(154800, true);
st.addExpAndSp(619300, 44200);
}
st.exitQuest(false, true);
break;
default:
htmltext = null;
break;
}
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;
}
switch (npc.getId())
{
case MOIRA:
switch (st.getState())
{
case State.CREATED:
htmltext = (player.getLevel() >= 80) ? "31979-01.htm" : "31979-00.htm";
break;
case State.STARTED:
htmltext = "31979-03.html";
break;
case State.COMPLETED:
htmltext = getAlreadyCompletedMsg(player);
break;
}
break;
case TORRANT:
if (st.isStarted())
{
htmltext = "32016-01.html";
}
break;
}
return htmltext;
}
}