Skip to content
Snippets Groups Projects
Commit 671988c5 authored by Zoey76's avatar Zoey76
Browse files

BETA: Quest The Way of the Warrior (175) in Java.

Patch by: ivantotov
Reviewed by: Zoey76, Adry_85, xban1x
Thanks to: Adry_85
parent 5b691381
No related branches found
No related tags found
No related merge requests found
Showing
with 29 additions and 175 deletions
......@@ -357,7 +357,7 @@ quests/171_ActsOfEvil/__init__.py
quests/Q00172_NewHorizons/Q00172_NewHorizons.java
quests/Q00173_ToTheIsleOfSouls/Q00173_ToTheIsleOfSouls.java
quests/Q00174_SupplyCheck/Q00174_SupplyCheck.java
quests/175_TheWayOfTheWarrior/__init__.py
quests/Q00175_TheWayOfTheWarrior/Q00175_TheWayOfTheWarrior.java
quests/Q00176_StepsForHonor/Q00176_StepsForHonor.java
quests/178_IconicTrinity/__init__.py
quests/Q00179_IntoTheLargeCavern/Q00179_IntoTheLargeCavern.java
......
<html><body>Hierarch Kekropus:<br>
Did you meet <font color="LEVEL">Assistant Elder Perwan</font>? In order to perform the ceremony, certain basic preparations must be undertaken. Come back when they have been completed.
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
The preparations have been completed; return to Perwan if you still wish to be acknowledged as one of the Fighters. Go quickly to <font color="LEVEL">Assistant Elder Perwan at the Grotto</font>.
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
Very well. You now prove that you have the necessary traits to be a Fighter: bravery and strength. Go to the <font color="LEVEL">Hills of Gold</font>, hunt <font color="LEVEL">Muertos</font> and bring back <font color="LEVEL">10 Muertos Claws</font>.
</body></html>
\ No newline at end of file
# Contributed by t0rm3nt0r (tormentor2000@mail.ru) to the Official L2J Datapack Project
# Visit http://www.l2jdp.com/forum/ for more details.
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
from com.l2jserver.gameserver.network.serverpackets import SocialAction
qn = "175_TheWayOfTheWarrior"
#NPC'S
PERWAN = 32133
KEKROPUS = 32138
#ITEM'S
WARRIORS_SWORD = 9720
LESSER_HEALING_POTIONS = 1060
ECHO = range(4412,4417)
SOULSHOT_FOR_BEGINNERS = 5789
WOLF_TAIL = 9807
MUERTOS_CLAW = 9808
#MOBS
MOUNTAIN_WEREWOLF = 22235
MUERTOS = [22236]+range(22239,22241)+range(22242,22244)+range(22245,22247)
NEWBIE_REWARD = 16
class Quest (JQuest) :
def __init__(self,id,name,descr):
JQuest.__init__(self,id,name,descr)
def onAdvEvent (self,event,npc, player) :
htmltext = event
st = player.getQuestState(qn)
if not st : return
player = st.getPlayer()
if event == "32138-04.htm" :
st.set("cond","1")
st.setState(State.STARTED)
st.playSound("ItemSound.quest_accept")
elif event == "32133-06.htm" :
st.set("cond","6")
st.playSound("ItemSound.quest_accept")
elif event == "32138-09.htm" :
st.set("cond","7")
st.playSound("ItemSound.quest_accept")
elif event == "32138-12.htm" :
st.takeItems(MUERTOS_CLAW,-1)
st.giveItems(57,8799)
st.giveItems(LESSER_HEALING_POTIONS,100)
for item in ECHO :
st.giveItems(item,10)
newbie = player.getNewbie()
if newbie | NEWBIE_REWARD != newbie :
player.setNewbie(newbie|NEWBIE_REWARD)
st.giveItems(SOULSHOT_FOR_BEGINNERS,7000)
st.playTutorialVoice("tutorial_voice_026")
st.giveItems(WARRIORS_SWORD,1)
st.addExpAndSp(20739,1777)
player.sendPacket(SocialAction(player.getObjectId(),3))
player.sendPacket(SocialAction(player.getObjectId(),15))
st.playSound("ItemSound.quest_finish")
st.exitQuest(False)
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")
if id == State.COMPLETED :
htmltext = Quest.getAlreadyCompletedMsg(player)
elif id == State.CREATED and npcId == KEKROPUS :
if st.getPlayer().getLevel() >= 10 and player.getRace().ordinal() == 5 :
htmltext = "32138-01.htm"
else :
htmltext = "32138-02.htm"
st.exitQuest(1)
elif id == State.STARTED :
if npcId == KEKROPUS :
if cond == 1 :
htmltext = "32138-05.htm"
elif cond == 4 :
htmltext = "32138-06.htm"
st.set("cond","5")
st.playSound("ItemSound.quest_middle")
elif cond == 5 :
htmltext = "32138-07.htm"
elif cond == 6 :
htmltext = "32138-08.htm"
elif cond == 7 :
htmltext = "32138-10.htm"
elif cond == 8 :
htmltext = "32138-11.htm"
elif npcId == PERWAN :
if cond == 1 :
htmltext = "32133-01.htm"
st.set("cond","2")
st.playSound("ItemSound.quest_middle")
elif cond == 2 :
htmltext = "32133-02.htm"
elif cond == 3 :
st.takeItems(WOLF_TAIL,-1)
htmltext = "32133-03.htm"
st.set("cond","4")
st.playSound("ItemSound.quest_middle")
elif cond == 4 :
htmltext = "32133-04.htm"
elif cond == 5 :
htmltext = "32133-05.htm"
elif cond == 6 :
htmltext = "32133-07.htm"
return htmltext
def onKill(self,npc,player,isPet) :
st = player.getQuestState(qn)
if not st: return
if st.getState() == State.STARTED :
npcId = npc.getId()
cond = st.getInt("cond")
chance = self.getRandom(100)
tails = st.getQuestItemsCount(WOLF_TAIL)
claws = st.getQuestItemsCount(MUERTOS_CLAW)
if npcId == MOUNTAIN_WEREWOLF and (chance < 50) and (cond == 2) and (tails < 5) : #Retail statistic info. 10 mob's - 5 tails
st.giveItems(WOLF_TAIL,1)
st.playSound("ItemSound.quest_itemget")
if st.getQuestItemsCount(WOLF_TAIL) == 5 :
st.set("cond","3")
st.playSound("ItemSound.quest_middle")
elif (npcId in MUERTOS) and (claws < 10) and (cond == 7): #Retail statistic info. 10 mob's - 10 claws
st.giveItems(MUERTOS_CLAW,1)
st.playSound("ItemSound.quest_itemget")
if st.getQuestItemsCount(MUERTOS_CLAW) == 10 :
st.set("cond","8")
st.playSound("ItemSound.quest_middle")
return
QUEST = Quest(175, qn, "The Way of the Warrior")
QUEST.addStartNpc(KEKROPUS)
QUEST.addTalkId(KEKROPUS)
QUEST.addTalkId(PERWAN)
QUEST.addKillId(MOUNTAIN_WEREWOLF)
for mob in MUERTOS :
QUEST.addKillId(mob)
<html><body>Vice Hierarch Perwan:<br>
<html><body>Perwan:<br>
I met you not long ago, and yet here you are preparing for your warrior ritual. Excellent!<br>
There is something you must do first, however. Go to the Hills of Gold and obtain <font color="LEVEL">5 lovely Wolf Tails</font>. Leave the rest to me.
</body></html>
\ No newline at end of file
<html><body>Vice Hierarch Perwan:<br>
<html><body>Perwan:<br>
Did you forget what I told you? <font color="LEVEL">Go to the Hills of Gold and obtain 5 lovely Werewolf tail pelts.</font>
</body></html>
\ No newline at end of file
<html><body>Vice Hierarch Perwan:<br>
<html><body>Perwan:<br>
Well done! Now return to <font color="LEVEL">Hierarch Kekropus</font> and listen to his words while I prepare these things.<br>
He will tell you the reason why you must undergo these formalities. After your curiosity has been satified, everything will be ready for you. Go, make haste!
He will tell you the reason why you must undergo these formalities. After your curiosity has been satisfied, everything will be ready for you. Go, make haste!
</body></html>
\ No newline at end of file
<html><body>Vice Hierarch Perwan:<br>
<html><body>Perwan:<br>
This will take some time to prepare, so go to <font color="LEVEL">Hierarch Kekropus</font> and listen to his words.
</body></html>
\ No newline at end of file
<html><body>Vice Hierarch Perwan:<br>
The preparations are complete. You understand now why they were necessary, right?<br>
Then be seated, close your eyes and tell me when you are ready to begin<br>
<a action="bypass -h Quest 175_TheWayOfTheWarrior 32133-06.htm">"I'm ready."</a>
Then be seated, close your eyes and tell me when you are ready to begin.<br>
<a action="bypass -h Quest Q00175_TheWayOfTheWarrior 32133-06.html">"I'm ready."</a>
</body></html>
\ No newline at end of file
<html><body>Vice Hierarch Perwan:<br>
Wait a moment -- don't move<br>
<html><body>Perwan:<br>
Wait a moment -- don't move.<br>
Ah, we are ready! Now go to <font color="LEVEL">Hierarch Kekropus</font> to be acknowledged as a true Kamael Warrior.
</body></html>
\ No newline at end of file
<html><body>Vice Hierarch Perwan:<br>
<html><body>Perwan:<br>
Why are you still here? Go to <font color="LEVEL">Hierarch Kekropus</font> immediately!
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
What brings you to me?<br>
<a action="bypass -h Quest 175_TheWayOfTheWarrior 32138-03.htm">"I would like to become a Kamael warrior."</a>
<a action="bypass -h Quest Q00175_TheWayOfTheWarrior 32138-02.htm">"I would like to become a Kamael warrior."</a>
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
I admire your confidence! To be acknowledged as a Kamael warrior is no easy task. Are you prepared to risk both body and spirit?<br>
<a action="bypass -h Quest 175_TheWayOfTheWarrior 32138-04.htm">"I can do anything."</a>
<a action="bypass -h Quest Q00175_TheWayOfTheWarrior 32138-05.htm">"I can do anything."</a>
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
It may be that we have entered into an alliance with them, but they dare not enter our holy sanctuary.<br>
(Only Kamael clans above level 10 may embark on this quest.)
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
Yes, with that kind of will, you may avercome any hardship. You have the spirit and pride necessary for a Fighter.<br>
You must prepare for the ceremony. Go to <font color="LEVEL">Vice Hierarch Perwan at the Cave of Souls</font> and seek his assistance; then returned to me when your preparations have been completed.
Yes, with that kind of will, you may overcome any hardship. You have the spirit and pride necessary for a Fighter.<br>
You must prepare for the ceremony. Go to <font color="LEVEL">Vice Hierarch Perwan at the Cave of Souls</font> and seek his assistance; then return to me when your preparations have been completed.
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
Did you meet <font color="LEVEL">Assistant Elder Peruwan</font>? In order to perform the ceremony, certain basic preparations must be undertaken. Come back when they have been completed.
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
How are the preparations progressing? I see that you are curious about why we are preparing for this ceremony rather than simply leaving for the hunt.<br>
But you have hunted outside before, so you must know that you may meet a foe stronger than you are or be overcome by a poison you have never befor encountered. Through this ceremony, we help ensure the safety of those the participants.<br>
But you have hunted outside before, so you must know that you may meet a foe stronger than you are or be overcome by a poison you have never before encountered. Through this ceremony, we help ensure the safety of those the participants.<br>
The preparations should be complete by now. Go back to <font color="LEVEL">Perwan in the Cave of Souls</font>.
</body></html>
\ No newline at end of file
<html><body>Hierarch Kekropus:<br>
The preparations have been completed; return to Peruwan if you still wish to be acknowledged as one of the Fighters. Go quickly to <font color="LEVEL">Assistant Elder Peruwan at the Grotto</font>.
</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