Skip to content
Snippets Groups Projects
Commit e1e48253 authored by malyelfik's avatar malyelfik
Browse files

BETA: Quest '''Inhabitants of the Forest of the Dead''' and minor update for Fortune Teller AI

* Quest:
 * Translated to Java and updated
 * Added Dorian AI
   * Reported by corbin12
parent ccbef93c
No related branches found
No related tags found
No related merge requests found
Showing
with 100 additions and 230 deletions
......@@ -11,6 +11,7 @@ handlers/MasterHandler.java
# AI Section
# Npc
ai/npc/Dorian/Dorian.java
ai/npc/DragonVortex/DragonVortex.java
ai/npc/ForgeOfTheGods/ForgeOfTheGods.java
ai/npc/ForgeOfTheGods/Rooney.java
......@@ -306,7 +307,7 @@ quests/Q00020_BringUpWithLove/Q00020_BringUpWithLove.java
quests/21_HiddenTruth/__init__.py
quests/22_TragedyInVonHellmannForest/__init__.py
quests/23_LidiasHeart/__init__.py
quests/24_InhabitantsOfTheForrestOfTheDead/__init__.py
quests/Q00024_InhabitantsOfTheForestOfTheDead/Q00024_InhabitantsOfTheForestOfTheDead.java
quests/25_HidingBehindTheTruth/__init__.py
quests/Q00026_TiredOfWaiting/Q00026_TiredOfWaiting.java
quests/Q00027_ChestCaughtWithABaitOfWind/Q00027_ChestCaughtWithABaitOfWind.java
......
/*
* This program 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.
*
* This program 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 ai.npc.Dorian;
import quests.Q00024_InhabitantsOfTheForestOfTheDead.Q00024_InhabitantsOfTheForestOfTheDead;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.datatables.SpawnTable;
import com.l2jserver.gameserver.model.L2Spawn;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.quest.QuestState;
import com.l2jserver.gameserver.network.NpcStringId;
import com.l2jserver.gameserver.network.clientpackets.Say2;
/**
* Dorian (Raid Fighter) - Quest AI
* @author malyelfik
*/
public class Dorian extends AbstractNpcAI
{
private static final int ID = 25332;
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
if (event.equals("checkArea"))
{
if (npc.isDecayed())
{
cancelQuestTimers("checkArea");
}
else
{
for (L2PcInstance pl : npc.getKnownList().getKnownPlayersInRadius(300))
{
final QuestState qs = pl.getQuestState(Q00024_InhabitantsOfTheForestOfTheDead.class.getSimpleName());
if ((qs != null) && qs.isCond(3))
{
qs.takeItems(7153, -1);
qs.giveItems(7154, 1);
qs.setCond(4, true);
broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.THAT_SIGN);
}
}
}
}
return null;
}
@Override
public String onSpawn(L2Npc npc)
{
startQuestTimer("checkArea", 3000, npc, null, true);
return null;
}
public Dorian(String name, String descr)
{
super(name, descr);
addSpawnId(ID);
for (L2Spawn spawn : SpawnTable.getInstance().getSpawnTable())
{
if ((spawn != null) && (spawn.getNpcid() == ID))
{
startQuestTimer("checkArea", 3000, spawn.getLastSpawn(), null, true);
}
}
}
public static void main(String[] args)
{
new Dorian(Dorian.class.getSimpleName(), "ai/npc");
}
}
\ No newline at end of file
......@@ -41,7 +41,7 @@ public class FortuneTelling extends AbstractNpcAI
public String onTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = getNoQuestMsg(player);
if (player.getAdena() < 1000)
if (player.getAdena() < COST)
{
htmltext = "lowadena.htm";
}
......
<html><body>Dorian:<br>
Nooo!<br>
It can't be! Me? A vampire? It's true that the lord of the manor I serve is an undead... But that doesn't mean I'm a vampire! <br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31389-16.htm"> "Check out this crucifix!" </a>
</body></html>
\ No newline at end of file
<html><body>Dorian:<br>
I gave you that! ...I see. Now I remember...<br>
Young master Einhart and... and... you! You were standing there... holding the holy symbol! <br>
Now I know... why the lord gave me such an order! <br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31389-17.htm">"What order?" </a>
</body></html>
\ No newline at end of file
<html><body>Mysterous Wizard:<br>
So tell me!<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31522-10.htm">"You're gathering materials for the dark arts."</a><br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31522-12.htm">"You signed a contract."</a>
</body></html>
\ No newline at end of file
<html><body>Mysterious Wizard:<br>
Where is your proof?<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31522-11.htm">"Lady Lidia controls all the dead of this earth, a power nearly equal to a god's! One must be granted authority by her to have power over the dead in any capacity."</a>
</body></html>
\ No newline at end of file
<html><body>Mysterious Wizard:<br>
So?<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31522-15.htm">"Nobody is allowed here without permission. That you're here means you have power at least equal to the Lord of the Forest of the Dead."</a>
</body></html>
\ No newline at end of file
<html><body>Mysterious Wizard:<br>
History is filled with such contracts. Do you know why?<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31522-14.htm">"Nonaggression contracts are signed between two equal powers. It stays in effect only as long as it benefits them. If one party becomes weaker, the contract is nullified."</a>
</body></html>
\ No newline at end of file
<html><body>Mysterious Wizard:<br>
Go on.<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31522-15.htm">"The Lord of the Dead has absolute power here, why would she sign a contract with you? You must have power equal to hers, or else she reaps some benefit from not fighting you."</a>
</body></html>
\ No newline at end of file
<html><body>Maid of Lidia:<br>
Did I say Neidrahu?<br>
What do you know of the name?<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31532-09.htm">"It's a tree."</a><br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31532-10.htm">"It's a corpse."</a><br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31532-11.htm">"It's a Mystic."</a>
</body></html>
\ No newline at end of file
<html><body>Maid of Lidia:<br>
How do you know about Neidrahu? Are you the last survivor? If so, you'll never get out of this forest alive...or dead!<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31532-13.htm">"I read the diary."</a>
</body></html>
\ No newline at end of file
# Created by Kerberos
import sys
from com.l2jserver.gameserver import GameTimeController
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest.jython import QuestJython as JQuest
from com.l2jserver.gameserver.network.serverpackets import NpcSay
qn = "24_InhabitantsOfTheForrestOfTheDead"
# Npcs
Dorian = 31389
Wizard = 31522
Tombstone = 31531
MaidOfLidia = 31532
#Items
Letter = 7065
Hairpin = 7148
Totem = 7151
Flower = 7152
SilverCross = 7153
BrokenSilverCross = 7154
SuspiciousTotem = 7156
def FindTemplate (npcId) :
npcinstance = 0
for spawn in SpawnTable.getInstance().getSpawnTable().values():
if spawn :
if spawn.getNpcid() == npcId:
npcinstance=spawn.getLastSpawn()
break
return npcinstance
def AutoChat(npc,text) :
chars = npc.getKnownList().getKnownPlayers().values().toArray()
if chars != None:
for pc in chars :
sm = NpcSay(npc.getObjectId(), 0, npc.getNpcId(), text)
pc.sendPacket(sm)
class Quest (JQuest) :
def __init__(self,id,name,descr):
JQuest.__init__(self,id,name,descr)
self.questItemIds = [Flower,SilverCross,BrokenSilverCross,Letter,Hairpin,Totem]
def onAdvEvent (self,event,npc,player) :
st = player.getQuestState(qn)
if not st: return
htmltext = event
if event == "31389-02.htm":
st.giveItems(Flower,1)
st.set("cond","1")
st.playSound("ItemSound.quest_accept")
st.setState(State.STARTED)
elif event == "31389-11.htm":
st.set("cond","3")
st.playSound("ItemSound.quest_middle")
st.giveItems(SilverCross,1)
elif event == "31389-16.htm":
st.playSound("InterfaceSound.charstat_open_01")
elif event == "31389-17.htm":
st.takeItems(BrokenSilverCross,-1)
st.giveItems(Hairpin,1)
st.set("cond","5")
elif event == "31522-03.htm":
st.takeItems(Totem,-1)
elif event == "31522-07.htm":
st.set("cond","11")
elif event == "31522-19.htm":
st.giveItems(SuspiciousTotem,1)
st.addExpAndSp(242105,22529)
st.exitQuest(False)
st.playSound("ItemSound.quest_finish")
elif event == "31531-02.htm":
st.playSound("ItemSound.quest_middle")
st.set("cond","2")
st.takeItems(Flower,-1)
elif event == "31532-04.htm":
st.playSound("ItemSound.quest_middle")
st.giveItems(Letter,1)
st.set("cond","6")
elif event == "31532-06.htm":
st.takeItems(Hairpin,-1)
st.takeItems(Letter,-1)
elif event == "31532-16.htm":
st.playSound("ItemSound.quest_middle")
st.set("cond","9")
return htmltext
def onTalk (self,npc,player):
htmltext = Quest.getNoQuestMsg(player)
st = player.getQuestState(qn)
if not st : return htmltext
npcId = npc.getNpcId()
state = st.getState()
if state == State.COMPLETED :
if npcId == Wizard :
htmltext = "31522-20.htm"
else:
htmltext = Quest.getAlreadyCompletedMsg(player)
cond = st.getInt("cond")
if npcId == Dorian :
if state == State.CREATED :
st2 = st.getPlayer().getQuestState("23_LidiasHeart")
if st2 :
if st2.getState() == State.COMPLETED and player.getLevel() >= 65 :
htmltext = "31389-01.htm"
else:
htmltext = "31389-00.htm"
else:
htmltext = "31389-00.htm"
elif cond == 1 :
htmltext = "31389-03.htm"
elif cond == 2 :
htmltext = "31389-04.htm"
elif cond == 3 :
htmltext = "31389-12.htm"
elif cond == 4 :
htmltext = "31389-13.htm"
elif cond == 5 :
htmltext = "31389-18.htm"
elif npcId == Tombstone :
if cond == 1 :
st.playSound("AmdSound.d_wind_loot_02")
htmltext = "31531-01.htm"
elif cond == 2 :
htmltext = "31531-03.htm"
elif npcId == MaidOfLidia :
if cond == 5 :
htmltext = "31532-01.htm"
elif cond == 6 :
if st.getQuestItemsCount(Letter) and st.getQuestItemsCount(Hairpin) :
htmltext = "31532-05.htm"
else:
htmltext = "31532-07.htm"
elif cond == 9 :
htmltext = "31532-16.htm"
elif npcId == Wizard :
if cond == 10 :
htmltext = "31522-01.htm"
elif cond == 11 :
htmltext = "31522-08.htm"
return htmltext
def onKill(self,npc,player,isPet):
st = player.getQuestState(qn)
if not st : return
if st.getState() != State.STARTED : return
npcId = npc.getNpcId()
if not st.getQuestItemsCount(Totem) and st.getInt("cond") == 9:
if npcId in [21557,21558,21560,21563,21564,21565,21566,21567] and self.getRandom(100) <=30:
st.giveItems(Totem,1)
st.set("cond","10")
st.playSound("ItemSound.quest_middle")
return
def onAggroRangeEnter(self, npc, player, isPet) :
if npc.getNpcId() == 25332:
if isPet: npc.getAggroList().remove(player.getPet())
else :
npc.getAggroList().remove(player)
st = player.getQuestState(qn)
if st and st.getQuestItemsCount(SilverCross):
st.takeItems(SilverCross,-1)
st.giveItems(BrokenSilverCross,1)
st.set("cond","4")
AutoChat(npc,"That sign!")
return
QUEST = Quest(24,qn,"Inhabitants Of The Forrest Of The Dead")
QUEST.addStartNpc(Dorian)
QUEST.addTalkId(Dorian)
QUEST.addTalkId(Tombstone)
QUEST.addTalkId(MaidOfLidia)
QUEST.addTalkId(Wizard)
QUEST.addAggroRangeEnterId(25332)
for mob in [21557,21558,21560,21563,21564,21565,21566,21567]:
QUEST.addKillId(mob)
\ No newline at end of file
......@@ -135,7 +135,7 @@ class Quest (JQuest) :
htmltext = Quest.getAlreadyCompletedMsg(player)
elif id == State.CREATED:
if npcId == Benedict:
st2 = st.getPlayer().getQuestState("24_InhabitantsOfTheForrestOfTheDead")
st2 = st.getPlayer().getQuestState("Q00024_InhabitantsOfTheForestOfTheDead")
if st2 and st2.getState() == State.COMPLETED and player.getLevel() >= 66 :
htmltext = "31349-01.htm"
else :
......
<html><body>Dorian:<br>
Are you the one who recovered the Silver Spear? Your reputation precedes you! Actually, I have a problem you may be able to help me with!<br>
Would you be willing to help me?<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31389-02.htm">"I'll do it!"</a>
<a action="bypass -h Quest Q00024_InhabitantsOfTheForestOfTheDead 31389-02.htm">"I'll do it!"</a>
</body></html>
\ No newline at end of file
<html><body>Dorian:<br>
Did you place the flower at the tombstone? Did you notice who was buried in that grave?<br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31389-05.htm">Nidrah</a><br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31389-06.htm">Lidia</a><br>
<a action="bypass -h Quest 24_InhabitantsOfTheForrestOfTheDead 31389-07.htm">Rose</a>
<a action="bypass -h Quest Q00024_InhabitantsOfTheForestOfTheDead 31389-06.html">Nidrah</a><br>
<a action="bypass -h Quest Q00024_InhabitantsOfTheForestOfTheDead 31389-07.html">Lidia</a><br>
<a action="bypass -h Quest Q00024_InhabitantsOfTheForestOfTheDead 31389-08.html">Rose</a>
</body></html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment