Skip to content
Snippets Groups Projects
Commit 9c43f3e2 authored by Adry_85's avatar Adry_85
Browse files

Retail-like quest Shrieks of Ghosts (371).

parent 663e7302
No related branches found
No related tags found
No related merge requests found
Showing
with 55 additions and 155 deletions
...@@ -247,7 +247,6 @@ quests/343_UnderTheShadowOfTheIvoryTower/__init__.py ...@@ -247,7 +247,6 @@ quests/343_UnderTheShadowOfTheIvoryTower/__init__.py
quests/345_MethodToRaiseTheDead/__init__.py quests/345_MethodToRaiseTheDead/__init__.py
quests/348_ArrogantSearch/__init__.py quests/348_ArrogantSearch/__init__.py
quests/351_BlackSwan/__init__.py quests/351_BlackSwan/__init__.py
quests/371_ShriekOfGhosts/__init__.py
quests/372_LegacyOfInsolence/__init__.py quests/372_LegacyOfInsolence/__init__.py
quests/373_SupplierOfReagents/__init__.py quests/373_SupplierOfReagents/__init__.py
quests/379_FantasyWine/__init__.py quests/379_FantasyWine/__init__.py
......
<html><body>Antique Dealer Patrin:<br>
Just a moment... Let me get my glasses...<br>What have we here, hmm? Hmm...<br>
Oh my! Indeed!<br>You've found a <font color="LEVEL">high grade</font> porcelain. It has been glazed to make it shiny. Most likely it decorated the home of an Elmoreden aristocrat... It will fetch a good price at any store.</body></html>
\ No newline at end of file
<html><body>Antique Dealer Patrin:<br>
Just a moment... Let me get my glasses...<br>Now, what have we here, hmm...<br>
Oh my!<br>This is the <font color="LEVEL">lowest grade</font> porcelain I've ever seen! Look at the large crack on the side. Do you see it? The texture is very crude, made from coarse clay... Sorry to disappoint you, but it is practically worthless...</body></html>
\ No newline at end of file
# Contributed by t0rm3nt0r to the Official L2J Datapack Project.
import sys
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest import Quest as JQuest
qn = "371_ShriekOfGhosts"
#NPC
PATRIN = 30929
REVA = 30867
#Quest items
URN = 5903
PORCELAIN = 6002
# item : [chance, html]
PORC = {
6003 : [ 2 , "30929-03.htm"],
6004 : [ 32, "30929-04.htm"],
6005 : [ 62, "30929-05.htm"],
6006 : [ 77, "30929-06.htm"]
}
# mobid : [urn chance, porcelain chance]
MOBS = {
20818 : [38, 43],
20820 : [48, 56],
20824 : [50, 58]
}
class Quest (JQuest) :
def __init__(self,id,name,descr):
JQuest.__init__(self,id,name,descr)
self.questItemIds = PORC.keys()
def onEvent (self,event,st) :
htmltext = event
urn = st.getQuestItemsCount(URN)
porcelain = st.getQuestItemsCount(PORCELAIN)
if event == "30867-03.htm" :
st.set("cond","1")
st.setState(State.STARTED)
st.playSound("ItemSound.quest_accept")
elif event == "TRADE" :
if urn == 0 :
htmltext = "30867-06.htm"
elif urn <= 100 :
st.takeItems(URN,-1)
st.giveItems(57,7000+urn*1000)
htmltext = "30867-07.htm"
elif urn > 100 :
st.takeItems(URN,-1)
st.giveItems(57,13000+urn*1000)
htmltext = "30867-08.htm"
elif event == "30867-10.htm" :
htmltext = "30867-10.htm"
if urn > 0:
st.giveItems(57,urn*1000)
st.takeItems(URN,urn)
st.exitQuest(1)
elif event == "APPR" :
if not porcelain :
htmltext = "30929-02.htm"
else :
test = self.getRandom(100)
st.takeItems(PORCELAIN,1)
htmltext = "30929-07.htm"
for item in PORC.keys():
chance, html = PORC[item]
if test < chance :
st.giveItems(item,1)
htmltext = html
break
return htmltext
def onTalk (self,npc,player):
npcId = npc.getId()
htmltext = Quest.getNoQuestMsg(player)
st = player.getQuestState(qn)
if not st : return htmltext
id = st.getState()
cond = st.getInt("cond")
urn = st.getQuestItemsCount(URN)
porcelain = st.getQuestItemsCount(PORCELAIN)
if id == State.CREATED and npcId == REVA :
if player.getLevel() < 59 :
htmltext = "30867-01.htm"
st.exitQuest(1)
else :
htmltext = "30867-02.htm"
elif id == State.STARTED :
if npcId == REVA :
if not porcelain :
htmltext = "30867-04.htm"
else :
htmltext = "30867-05.htm"
elif npcId == PATRIN :
htmltext = "30929-01.htm"
return htmltext
def onKill(self,npc,player,isPet) :
partyMember = self.getRandomPartyMemberState(player, State.STARTED)
if not partyMember: return
st = partyMember.getQuestState(qn)
if not st : return
npcId = npc.getId()
chance = self.getRandom(100)
if npcId in MOBS.keys() :
urnchance, porcchance = MOBS[npcId]
if chance < urnchance :
st.giveItems(URN,1)
st.playSound("ItemSound.quest_itemget")
elif chance < porcchance :
st.giveItems(PORCELAIN,1)
st.playSound("ItemSound.quest_itemget")
return
QUEST = Quest(371, qn, "Shriek Of Ghosts")
QUEST.addStartNpc(REVA)
QUEST.addTalkId(REVA)
QUEST.addTalkId(PATRIN)
for mob in MOBS.keys() :
QUEST.addKillId(mob)
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
Behold... countless ghosts encircle the Tower of Insolence! Just listen to their horrible screams! Do you feel their incredible rage?<br> Behold... countless ghosts encircle the Tower of Insolence! Just listen to their horrible screams! Do you feel their incredible rage?<br>
The sword of a devil shall pierce the heart of an angel, and the bright red blood of the last emperor will run through the streets! Dawn and dusk will become as one, and the heavens and earth will tremble! This is how Paagrio describes the beginning of endless winter...<br> The sword of a devil shall pierce the heart of an angel, and the bright red blood of the last emperor will run through the streets! Dawn and dusk will become as one, and the heavens and earth will tremble! This is how Pa'agrio describes the beginning of endless winter...<br>
The arrogant humans are hastening their grisly fate! Unless the wrathful souls of the dead can be appeased, a terrible apocalypse will surely destroy this land forever!<br>I beg of you! Will you take the risk of the tower and help us? The arrogant humans are hastening their grisly fate! Unless the wrathful souls of the dead can be appeased, a terrible apocalypse will surely destroy this land forever!<br>
<br><a action="bypass -h Quest 371_ShriekOfGhosts 30867-03.htm">"I will brave the tower."</a></body></html> I beg of you! Will you take the risk of the tower and help us?<br>
\ No newline at end of file <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-02.htm">"I will brave the tower."</a>
</body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
Humans so easily ignore the fact that the Tower of Insolence is like a gigantic tomb, erected at the expense of countless lives! To conceal the secret of the tower, the despot Baium executed thousands of slaves and buried them there. Their vengeful spirits haunt the tower to this day.<br> Humans so easily ignore the fact that the Tower of Insolence is like a gigantic tomb, erected at the expense of countless lives! To conceal the secret of the tower, the despot Baium executed thousands of slaves and buried them there. Their vengeful spirits haunt the tower to this day.<br>
Hurry to the <font color="LEVEL">Tower of Insolence</font>. There you will find the undead warriors who serve the Devil's Overlord. You must kill <font color="LEVEL">Hallate's warriors, Hallate's knights and Hallate's commanders</font>. Don't give an inch! Recover the <font color="LEVEL">Ancient Ash Urns</font>! Bring back the ashes and I will perform the ritual of fire that will put the undead warriors to rest. If your work is deemed worthy in my eyes, I will bestow upon you a prize. Bring me 100 or more ash urns at once and you will receive an even greater prize!</body></html> Hurry to the <font color="LEVEL">Tower of Insolence</font>. There you will find the undead warriors who serve the Devil's Overlord. You must kill <font color="LEVEL">Hallate's warriors, Hallate's knights and Hallate's commanders</font>. Don't give an inch! Recover the <font color="LEVEL">Ancient Ash Urns</font>! Bring back the ashes and I will perform the ritual of fire that will put the undead warriors to rest. If your work is deemed worthy in my eyes, I will bestow upon you a prize. Bring me 100 or more ash urns at once and you will receive an even greater prize!
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
Behold... countless ghosts encircle the Tower of Insolence! Just listen to their horrible screams! Do you feel their incredible rage?<br> Behold... countless ghosts encircle the Tower of Insolence! Just listen to their horrible screams! Do you feel their incredible rage?<br>
The sword of a devil shall pierce the heart of an angel, and the bright red blood of the last emperor will run through the streets! Dawn and dusk will become as one, and the heavens and earth will tremble! This is how Paagrio describes the beginning of endless winter...<br> The sword of a devil shall pierce the heart of an angel, and the bright red blood of the last emperor will run through the streets! Dawn and dusk will become as one, and the heavens and earth will tremble! This is how Pa'agrio describes the beginning of endless winter...<br>
The arrogant humans are hastening their grisly fate! Unless the wrathful souls of the dead can be appeased, a terrible apocalypse will surely destroy this land forever!<br> The arrogant humans are hastening their grisly fate! Unless the wrathful souls of the dead can be appeased, a terrible apocalypse will surely destroy this land forever!<br>
Take heed, young warrior! When you've developed your skills to the point that you can brave the tower, come and see me.<br> Take heed, young warrior! When you've developed your skills to the point that you can brave the tower, come and see me.<br>
(This quest may only be undertaken by a character of level 59 or above.)</body></html> (This quest may only be undertaken by a character of level 59 or above.)
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
Congratulations on your safe return, young soldier! Word has come that the tower has become a chaotic entanglement of angels and demons. I trust that you have recovered many of the <font color="LEVEL">Ancient Ash Urns</font> from Hallate's warriors, knights and commanders!<br> Congratulations on your safe return, young soldier! Word has come that the tower has become a chaotic entanglement of angels and demons. I trust that you have recovered many of the <font color="LEVEL">Ancient Ash Urns</font> from Hallate's warriors, knights and commanders!<br>
The <font color="LEVEL">Ancient Porcelain</font> you brought doesn't contain any remains. It was only used for decoration! It's no good to me, you can keep it for yourself! Either sell it at a store or take it to <font color="LEVEL">antique dealer Patrin</font>! He is at the general store in Oren Castle Town.<br> The <font color="LEVEL">Ancient Porcelain</font> you brought doesn't contain any remains. It was only used for decoration! It's no good to me, you can keep it for yourself! Either sell it at a store or take it to <font color="LEVEL">antique dealer Patrin</font>! He is at the general store in the Town of Oren.<br>
<a action="bypass -h Quest 371_ShriekOfGhosts TRADE">Hand over the Ancient Ash Urns.</a><br> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-05.html">Hand over the Ancient Ash Urns.</a><br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30867-09.htm">Settle the account later.</a><br> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-08.html">Settle the account later.</a><br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30867-10.htm">"I want to quit."</a> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-09.html">"I want to quit."</a>
</body></html> </body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
How rude! You come here empty-handed and have the gall to demand a prize? Hurry to the Tower of Insolence and find the Ancient Ash Urns! The souls of the undead warriors cry out for rest! Don't waste any more time!</body></html> How rude! You come here empty-handed and have the gall to demand a prize? Hurry to the Tower of Insolence and find the Ancient Ash Urns! The souls of the undead warriors cry out for rest! Don't waste any more time!
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
These are remains of the dead, trampled by a despot... I can feel their bitterness, even after one thousand years!<br> These are remains of the dead, trampled by a despot... I can feel their bitterness, even after one thousand years!<br>
Listen to me, young soldier! I, Reva, will grant you a prize for your hard work! Take it!<br> Listen to me, young soldier! I, Reva, will grant you a prize for your hard work! Take it!<br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30867-09.htm">Continue the mission.</a><br> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-08.html">Continue the mission.</a><br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30867-10.htm">Quit the mission.</a></body></html> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-09.html">Quit the mission.</a>
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
These are remains of the dead, trampled by a despot... I can feel their bitterness, even after one thousand years!<br> These are remains of the dead, trampled by a despot... I can feel their bitterness, even after one thousand years!<br>
You have brought over 100 ash urns at once! What a magnificent accomplishment! As I promised, I will grant you a special <font color="LEVEL">prize</font>! Take it!<br> You have brought over 100 ash urns at once! What a magnificent accomplishment! As I promised, I will grant you a special <font color="LEVEL"> prize</font>! Take it!<br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30867-09.htm">Continue the mission.</a><br> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-08.html">Continue the mission.</a><br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30867-10.htm">Quit the mission.</a></body></html> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-09.html">Quit the mission.</a>
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
Failure in this mission would prove catastrophic to us! Don't underestimate its importance! This is your duty! Do it!</body></html> Failure in this mission would prove catastrophic to us! Don't underestimate its importance! This is your duty! Do it!
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
Would you ignore the desperate cries of the dead? If you are so callous, I won't stop you! You must be aware that the failure of this mission will bring a terrible and irreversible disaster upon us. But if you've made up your mind, so be it! Your help is appreciated. Tejakar Oroka!</body></html> Would you ignore the desperate cries of the dead? If you are so callous, I won't stop you! You must be aware that the failure of this mission will bring a terrible and irreversible disaster upon us. But if you've made up your mind, so be it! Your help is appreciated. Tejakar Oroka!
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Seer Reva:<br> <html><body>Seer Reva:<br>
Congratulations on your safe return, young soldier! Word has come that the tower has become a chaotic entanglement of angels and demons. Have you vanquished Hallate's warriors, Hallate's knights and Hallate's commanders and recovered the <font color="LEVEL">Ancient Ash Urns</font>?<br> Congratulations on your safe return, young soldier! Word has come that the tower has become a chaotic entanglement of angels and demons. Have you vanquished Hallate's warriors, Hallate's knights and Hallate's commanders and recovered the <font color="LEVEL">Ancient Ash Urns</font>?<br>
<a action="bypass -h Quest 371_ShriekOfGhosts TRADE">Hand over the Ancient Ash Urns.</a><br> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-05.html">Hand over the Ancient Ash Urns.</a><br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30867-09.htm">Settle the account later.</a><br> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-08.html">Settle the account later.</a><br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30867-10.htm">"I quit."</a></body></html> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30867-09.html">"I quit."</a>
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Antique Dealer Patrin:<br> <html><body>Antique Dealer Patrin:<br>
It has come to my attention that the Orc seer Reva of Aden Castle Town is collecting Ancient Ash Urns. I asked him to give them to me so that I could sell them for a handsome price to antique collectors. He refused my offer, insisting that he needed them for a ritual! He promised me that if he finds an urn that does not contain any remains he would send it to me. Have you brought me such an item?<br> It has come to my attention that the Orc seer Reva of the Town of Aden is collecting Ancient Ash Urns. I asked him to give them to me so that I could sell them for a handsome price to antique collectors. He refused my offer, insisting that he needed them for a ritual! He promised me that if he finds an urn that does not contain any remains he would send it to me. Have you brought me such an item?<br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30929-01a.htm">"Tell me about the appraisal."</a><br> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30929-02.html">"Tell me about the appraisal."</a><br>
<a action="bypass -h Quest 371_ShriekOfGhosts APPR">"Please appraise the urn."</a></body></html> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30929-03.html">"Please appraise the urn."</a>
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Antique Dealer Patrin:<br> <html><body>Antique Dealer Patrin:<br>
An appraisal determines the true value of an item! To the untrained eye, an antique piece like this one may seem rather ordinary. But to the experienced eye of an expert like myself, each subtle mark and worn surface tells a story. The materials and techniques used to create it become clear to me.<br> An appraisal determines the true value of an item! To the untrained eye, an antique piece like this one may seem rather ordinary. But to the experienced eye of an expert like myself, each subtle mark and worn surface tells a story. The materials and techniques used to create it become clear to me.<br>
If the porcelain you bring me turns out to be a <font color="LEVEL">famous</font> or a <font color="LEVEL">high grade</font> porcelain, it will fetch a very high price at the store.<br>If the appraisal shows that the porcelain is <font color="LEVEL">low grade</font> or <font color="LEVEL">lowest grade</font>, it becomes practically worthless! Such items are better left unappraised.<br> If the porcelain you bring me turns out to be a <font color="LEVEL">famous</font> or a <font color="LEVEL">high grade</font> porcelain, it will fetch a very high price at the store.<br>If the appraisal shows that the porcelain is <font color="LEVEL">low grade</font> or <font color="LEVEL">lowest grade</font>, it becomes practically worthless! Such items are better left unappraised.<br>
<a action="bypass -h Quest 371_ShriekOfGhosts 30929-01.htm">Back</a></body></html> <a action="bypass -h Quest Q00371_ShrieksOfGhosts 30929-01.html">Back</a>
</body></html>
\ No newline at end of file
<html><body>Antique Dealder Patrin:<br> <html><body>Antique Dealer Patrin:<br>
What's the big idea, coming to me empty-handed for an appraisal? Are you crazy or is this some kind of a joke?</body></html> What's the big idea, coming to me empty-handed for an appraisal? Are you crazy or is this some kind of a joke?
\ No newline at end of file </body></html>
\ No newline at end of file
...@@ -2,4 +2,5 @@ ...@@ -2,4 +2,5 @@
Just a moment... Let me get my glasses...<br> Just a moment... Let me get my glasses...<br>
Now, what have we here, hmm?<br> Now, what have we here, hmm?<br>
Oh, my! Indeed!<br> Oh, my! Indeed!<br>
This is a <font color="LEVEL">famous porcelain</font>, made by the court sculptors! It is of the highest quality. It will fetch a great price at any store!</body></html> This is a <font color="LEVEL">famous porcelain</font>, made by the court sculptors! It is of the highest quality. It will fetch a great price at any store!
\ No newline at end of file </body></html>
\ No newline at end of file
<html><body>Antique Dealer Patrin:<br>
Just a moment... Let me get my glasses...<br>
What have we here, hmm? Hmm...<br>
Oh my! Indeed!<br>
You've found a <font color="LEVEL">high grade</font> porcelain. It has been glazed to make it shiny. Most likely it decorated the home of an Elmoreden aristocrat... It will fetch a good price at any store.
</body></html>
\ No newline at end of file
<html><body>Antique Dealer Patrin:<br> <html><body>Antique Dealer Patrin:<br>
Just a moment... Let me get my glasses...<br> Just a moment... Let me get my glasses...<br>
Now, what have we here, hmm? Oh Oh...!<br> Now, what have we here, hmm? Oh Oh...!<br>
Well, there's no go way to say this... This is a <font color="LEVEL">low grade</font> porcelain. Take a look here... Do you see this scratch? And look at this chipped edge... I'm sorry. It won't fetch much at a store.</body></html> Well, there's no go way to say this... This is a <font color="LEVEL">low grade</font> porcelain. Take a look here... Do you see this scratch? And look at this chipped edge... I'm sorry. It won't fetch much at a store.
\ No newline at end of file </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