This commit is contained in:
mobius
2015-01-01 20:02:50 +00:00
parent eeae660458
commit a6a3718849
17894 changed files with 2818932 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
<html><body>Seer Moira:<br>
Traveler, I cannot feel the protection of Pa'agrio on you. Come back to me after you have purified yourself with more training.<br>
(Only characters who are level 80 or higher may undertake this quest.)
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Seer Moira:<br>
You are under the protection of Pa'agrio! I trust you. Please go to the Beacon Tower at the <font color="LEVEL">Den of Evil</font> and take this box with you.<br>
<a action="bypass -h Quest Q00113_StatusOfTheBeaconTower 31979-02.htm">"Why the Beacon Tower?"</a>
</body></html>

View File

@@ -0,0 +1,3 @@
<html><body>Seer Moira:<br>
I don't know why, but the power from the Beacon Tower is weakening. They must be unable to light it! Take this box containing the power of fire to <font color="LEVEL">Beacon Tower Manager Torrant</font>.
</body></html>

View File

@@ -0,0 +1,3 @@
<html><body>Seer Moira:<br>
Hurry up! Go see <font color="LEVEL">Beacon Tower Manager Torrant</font> and give this to him.
</body></html>

View File

@@ -0,0 +1,5 @@
<html><body>Beacon Tower Manager Torrant:<br>
So, Moira asked you to come? What is that you have there?<br>
A box containing the Fire of Holy Spirit? Great! The fire was weakening because of the weird energy in this area. Give me the box at once!<br>
<a action="bypass -h Quest Q00113_StatusOfTheBeaconTower 32016-02.html">"Here it is."</a>
</body></html>

View File

@@ -0,0 +1,3 @@
<html><body>Beacon Tower Manager Torrant:<br>
All right. I have the box. You've come a long way and I know it's not much, but please accept this reward.
</body></html>

View File

@@ -0,0 +1,122 @@
/*
* 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.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)<br>
* 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;
}
}