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,6 @@
<html><body>Watcher of Valakas Klein:<br>
Is it hot in here or is it just me? Ha, that one never gets old... well, maybe a little. As you probably know this path leads to the lair of Valakas.<br>
Oh how many have come and became one with the flame that fills these halls...<br>
Valakas calls and those brave souls answer. Not like you though. Destiny has brought you here to face and defeat Valakas.<br>
But Valakas has guardians... do you know about the Lavasaurus Alpha?<br>
<a action="bypass -h Quest Q00906_TheCallOfValakas 31540-05.htm">"No, but I think I've got time for a history lesson."</a></body></html>

View File

@@ -0,0 +1,5 @@
<html><body>Watcher of Valakas Klein:<br>
Thank you for bringing back a Lavasaurus Alpha fragment.<br>
If you obtain them again, bring them to me.<br>
(This quest can be completed only once a day. This quest gets initialized everyday at 6:30 am.)
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Watcher of Valakas Klein:<br>
You are not qualified to hear my request...<br>
(Only characters above level 83 can undertake this quest.)
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Watcher of Valakas Klein:<br>
The fact that you don't have the <font color="LEVEL">Vacualite Floating Stone</font> means you did not satisfy the minimum requirement for this request.<br>
If you really want to hear my request, you must first obtain a <font color="LEVEL">Vacualite Floating Stone</font>.
</body></html>

View File

@@ -0,0 +1,6 @@
<html><body>Watcher of Valakas Klein:<br>
Would you believe that the Lavasaurus never used to exist? The Lavasaurus Alpha was the very first Lavasaurus ever created by Valakas here in the Forge of the Gods.<br>
Valakas created it to protect his lair. Created using a piece of Valakas's own energy.<br>
Now, that is a bit of information worth having. If you could bring me a piece of the Lavasaurus Alpha I bet I could make you an item that would aid you in your attack against Valakas.<br>
<a action="bypass -h Quest Q00906_TheCallOfValakas 31540-06.html">Agree to gather the fragment.</a>
</body></html>

View File

@@ -0,0 +1,3 @@
<html><body>Watcher of Valakas Klein:<br>
Excellent! I await your return with the Lavasaurus Alpha fragment. I'll be right here... as always. Won't move a step. Never have. In fact I haven't been outside this cave for who knows how long. Is Heine still around? It is? I swear one day the ocean is going to swallow that place.
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Watcher of Valakas Klein:<br>
Watch me pull a Lavasaurus Alpha fragment out of my hat. Ta-da! What? I don't have a Lavasaurus Alpha? What a coincidence, neither do you.<br>
Quit wasting my time... it's... valuable? Come talk to me when you have a Lavasaurus Alpha fragment.
</body></html>

View File

@@ -0,0 +1,7 @@
<html><body>Watcher of Valakas Klein:<br>
Would you look at that... a real Lavasaurus Alpha fragment.<br>
Give me a moment while I add this to the pile of Lavasaurus Alpha fragments all the other adventurers brought me... what? Oh, that's right. I said I would make you something with it.<br>
Well, I've got to be honest here... I didn't think you, or any of the others, would actually be successful. What little magic I was able to extract I can put into small objects, such as this scroll. This will bring you back here any time in an instant... but don't expect much more out of it.<br>
Why would you want to come back here? I don't know... maybe because Valakas seems to come back to life every couple of weeks.<br>
I need people like you so I can stay in business.
</body></html>

View File

@@ -0,0 +1,180 @@
/*
* 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.Q00906_TheCallOfValakas;
import com.l2jserver.gameserver.enums.QuestSound;
import com.l2jserver.gameserver.enums.QuestType;
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;
import com.l2jserver.gameserver.util.Util;
/**
* The Call of Valakas (906)
* @author Zoey76
*/
public class Q00906_TheCallOfValakas extends Quest
{
// NPC
private static final int KLEIN = 31540;
// Monster
private static final int LAVASAURUS_ALPHA = 29029;
// Items
private static final int LAVASAURUS_ALPHA_FRAGMENT = 21993;
private static final int SCROLL_VALAKAS_CALL = 21895;
private static final int VACUALITE_FLOATING_STONE = 7267;
// Misc
private static final int MIN_LEVEL = 83;
public Q00906_TheCallOfValakas()
{
super(906, Q00906_TheCallOfValakas.class.getSimpleName(), "The Call of Valakas");
addStartNpc(KLEIN);
addTalkId(KLEIN);
addKillId(LAVASAURUS_ALPHA);
registerQuestItems(LAVASAURUS_ALPHA_FRAGMENT);
}
@Override
public void actionForEachPlayer(L2PcInstance player, L2Npc npc, boolean isSummon)
{
final QuestState st = getQuestState(player, false);
if ((st != null) && Util.checkIfInRange(1500, npc, player, false))
{
st.giveItems(LAVASAURUS_ALPHA_FRAGMENT, 1);
st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET);
st.setCond(2, true);
}
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
final QuestState st = getQuestState(player, false);
if (st == null)
{
return null;
}
String htmltext = null;
if ((player.getLevel() >= MIN_LEVEL) && st.hasQuestItems(VACUALITE_FLOATING_STONE))
{
switch (event)
{
case "31540-05.htm":
{
htmltext = event;
break;
}
case "31540-06.html":
{
st.startQuest();
htmltext = event;
break;
}
}
}
return htmltext;
}
@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{
executeForEachPlayer(killer, npc, isSummon, true, false);
return super.onKill(npc, killer, isSummon);
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
final QuestState st = getQuestState(player, true);
if (st == null)
{
return getNoQuestMsg(player);
}
String htmltext = getNoQuestMsg(player);
switch (st.getState())
{
case State.CREATED:
{
if (player.getLevel() < MIN_LEVEL)
{
htmltext = "31540-03.html";
}
else if (!st.hasQuestItems(VACUALITE_FLOATING_STONE))
{
htmltext = "31540-04.html";
}
else
{
htmltext = "31540-01.htm";
}
break;
}
case State.STARTED:
{
switch (st.getCond())
{
case 1:
{
htmltext = "31540-07.html";
break;
}
case 2:
{
st.giveItems(SCROLL_VALAKAS_CALL, 1);
st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET);
st.exitQuest(QuestType.DAILY, true);
htmltext = "31540-08.html";
break;
}
}
break;
}
case State.COMPLETED:
{
if (!st.isNowAvailable())
{
htmltext = "31540-02.html";
}
else
{
st.setState(State.CREATED);
if (player.getLevel() < MIN_LEVEL)
{
htmltext = "31540-03.html";
}
else if (!st.hasQuestItems(VACUALITE_FLOATING_STONE))
{
htmltext = "31540-04.html";
}
else
{
htmltext = "31540-01.htm";
}
}
break;
}
}
return htmltext;
}
}