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,5 @@
<html><body>Beacon Tower Manager Torrant:<br>
Are you the reinforcements we asked for? You're certainly more powerful than I anticipated!<br>
Unfortunately, though, the situation here has deteriorated and the original mission is invalid. Perhaps we could still put your skills to good use. Are you up for a new mission? If so, speak with Chairen.<br>
(It is no longer possible to pursue this quest because the hunting field levels have been changed.)
</body></html>

View File

@@ -0,0 +1,5 @@
<html><body>Beacon Tower Manager Torrant:<br>
Are you the reinforcements we asked for? Well, you came too late.<br>
The Ragna Orcs around here have grown tremendously in strength thanks to the power of Kasha, the spirit that Baranka summoned. There is nothing you can do now...<br>
(It is no longer possible to pursue this quest because the hunting field levels have been changed.)
</body></html>

View File

@@ -0,0 +1,55 @@
/*
* 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.Q00646_SignsOfRevolt;
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;
/**
* Signs of Revolt (646)<br>
* NOTE: This quest is no longer available since Gracia Epilogue
* @author malyelfik
*/
public class Q00646_SignsOfRevolt extends Quest
{
// NPC
private static final int TORRANT = 32016;
// Misc
private static final int MIN_LEVEL = 80;
public Q00646_SignsOfRevolt()
{
super(646, Q00646_SignsOfRevolt.class.getSimpleName(), "Signs of Revolt");
addStartNpc(TORRANT);
addTalkId(TORRANT);
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
final QuestState st = getQuestState(player, true);
if (st != null)
{
st.exitQuest(true);
}
return (player.getLevel() >= MIN_LEVEL) ? "32016-01.html" : "32016-02.html";
}
}