Skip to content
Snippets Groups Projects
Commit 1fd22c2b authored by ivantotov's avatar ivantotov
Browse files

BETA: Quest Path Of The Elven Knight (406) in Java.

Reviewed by: joxit, Zoey76
parent 93671549
No related branches found
No related tags found
No related merge requests found
Showing
with 33 additions and 197 deletions
......@@ -266,7 +266,6 @@ quests/379_FantasyWine/__init__.py
quests/383_SearchingForTreasure/__init__.py
quests/384_WarehouseKeepersPastime/__init__.py
quests/386_StolenDignity/__init__.py
quests/406_PathToElvenKnight/__init__.py
quests/408_PathToElvenwizard/__init__.py
quests/409_PathToOracle/__init__.py
quests/410_PathToPalusKnight/__init__.py
......
<html><body>Master Sorius:<br>
However, you do not have enough experience. I feel that your movements and steps are not enough to study the skills of a higher level. Be patient and train yourself. Your eyes are filled with passion and faith. I will wait for that time.
</body></html>
<html><body>Master Sorius:<br>
I see you have the<font color="LEVEL"> Elven Knight brooch</font>. Take the brooch and go to<font color="LEVEL"> Grand Master Ramos</font>. Then he will change your profession to Elven Knight.
</body></html>
<html><body>Master Sorius:<br>
It is still not enough. You must have<font color="LEVEL"> 20 topaz pieces</font>. May the divine blessing of Einhasad and Eva be with you.
</body></html>
<html><body>Master Sorius:<br>
Congratulations. You have safely completed the test. The topaz that you brought will be used to make the Elven Knight brooch, symbol of the Elven Knights. With this, you can prove your skills openly to the grandmaster.<br>
However, the topaz piece is not enough to complete the Elven Knight brooch. Take this letter and go to<font color="LEVEL"> Blacksmith Kluto of the village of Gludin</font>. He will tell you how to make these jewels into an Elven Knight brooch. If you don't know how to go to Gludin, ask Guard Praga.<br>
</body></html>
<html><body>Master Sorius:<br>
I see you have safely passed Kluto's test. Congratulations. You have proved through this test that you have the ability to not be timid, but to show the courage of an Elven Knight. This brooch is made of materials collected by other Elves who have gone through the Test of the Elven Knight before you. Thus, we are continuing the brilliant tradition of the Elven race in the circle of fate where we receive from our ancestors and pass on to our future generations.<br>
You can change your profession to Elven Knight when you give this brooch to<font color="LEVEL"> Grand Master Rains</font> of the Fighters Guild. Well then, until the next time we meet, may the protection of Eva be with you!
</body></html>
# Made by Mr. - Version 0.3 by kmarty and DrLecter
# Shadow Weapon Coupons contributed by BiTi for 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 = "406_PathToElvenKnight"
SORIUS_LETTER1 = 1202
KLUTO_BOX = 1203
ELVEN_KNIGHT_BROOCH = 1204
TOPAZ_PIECE = 1205
EMERALD_PIECE = 1206
KLUTO_MEMO = 1276
class Quest (JQuest) :
def __init__(self,id,name,descr):
JQuest.__init__(self,id,name,descr)
self.questItemIds = [SORIUS_LETTER1, EMERALD_PIECE, TOPAZ_PIECE, KLUTO_MEMO, KLUTO_BOX]
def onEvent (self,event,st) :
htmltext = event
player = st.getPlayer()
if event == "30327-05.htm" :
if player.getClassId().getId() != 0x12 :
if player.getClassId().getId() == 0x13 :
htmltext = "30327-02a.htm"
else:
htmltext = "30327-02.htm"
st.exitQuest(1)
else:
if player.getLevel()<18 :
htmltext = "30327-03.htm"
st.exitQuest(1)
else:
if st.getQuestItemsCount(ELVEN_KNIGHT_BROOCH) :
htmltext = "30327-04.htm"
elif event == "30327-06.htm" :
st.set("cond","1")
st.setState(State.STARTED)
st.playSound("ItemSound.quest_accept")
elif event == "30317-02.htm" :
if st.getInt("cond") == 3 :
st.takeItems(SORIUS_LETTER1,-1)
if st.getQuestItemsCount(KLUTO_MEMO) == 0 :
st.giveItems(KLUTO_MEMO,1)
st.set("cond","4")
else :
htmltext = Quest.getNoQuestMsg(player)
else :
htmltext = Quest.getNoQuestMsg(player)
return htmltext
def onTalk (self,npc,player):
htmltext = Quest.getNoQuestMsg(player)
st = player.getQuestState(qn)
if not st : return htmltext
npcId = npc.getId()
id = st.getState()
if npcId != 30327 and id != State.STARTED : return htmltext
if id == State.CREATED :
st.set("cond","0")
cond=0
else :
cond=st.getInt("cond")
if npcId == 30327 :
if cond == 0 :
htmltext = "30327-01.htm"
elif cond == 1 :
if st.getQuestItemsCount(TOPAZ_PIECE)==0 :
htmltext = "30327-07.htm"
else:
htmltext = "30327-08.htm"
elif cond == 2 :
if st.getQuestItemsCount(SORIUS_LETTER1) == 0 :
st.giveItems(SORIUS_LETTER1,1)
st.set("cond","3")
htmltext = "30327-09.htm"
elif cond in [3, 4, 5] :
htmltext = "30327-11.htm"
elif cond == 6 :
st.takeItems(KLUTO_BOX,-1)
isFinished = st.getGlobalQuestVar("1ClassQuestFinished")
if isFinished == "" :
if player.getLevel() >= 20 :
st.addExpAndSp(320534, 23152)
elif player.getLevel() == 19 :
st.addExpAndSp(456128, 29850)
else:
st.addExpAndSp(591724, 33328)
st.giveItems(57, 163800)
player.sendPacket(SocialAction(player.getObjectId(),3))
st.set("cond","0")
st.exitQuest(False)
st.playSound("ItemSound.quest_finish")
st.saveGlobalQuestVar("1ClassQuestFinished","1")
if st.getQuestItemsCount(ELVEN_KNIGHT_BROOCH) == 0 :
st.giveItems(ELVEN_KNIGHT_BROOCH,1)
htmltext = "30327-10.htm"
elif npcId == 30317 :
if cond == 3 :
htmltext = "30317-01.htm"
elif cond == 4 :
if st.getQuestItemsCount(EMERALD_PIECE)==0 :
htmltext = "30317-03.htm"
else:
htmltext = "30317-04.htm"
elif cond == 5 :
st.takeItems(EMERALD_PIECE,-1)
st.takeItems(TOPAZ_PIECE,-1)
if st.getQuestItemsCount(KLUTO_BOX) == 0 :
st.giveItems(KLUTO_BOX,1)
st.takeItems(KLUTO_MEMO,-1)
st.set("cond","6")
htmltext = "30317-05.htm"
elif cond == 6 :
htmltext = "30317-06.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.getId()
if npcId != 20782 :
if st.getInt("cond")==1 and st.getQuestItemsCount(TOPAZ_PIECE)<20 and self.getRandom(100)<70 :
st.giveItems(TOPAZ_PIECE,1)
if st.getQuestItemsCount(TOPAZ_PIECE) == 20 :
st.playSound("ItemSound.quest_middle")
st.set("cond","2")
else:
st.playSound("ItemSound.quest_itemget")
else :
if st.getInt("cond")==4 and st.getQuestItemsCount(EMERALD_PIECE)<20 and self.getRandom(100)<50 :
st.giveItems(EMERALD_PIECE,1)
if st.getQuestItemsCount(EMERALD_PIECE) == 20 :
st.playSound("ItemSound.quest_middle")
st.set("cond","5")
else:
st.playSound("ItemSound.quest_itemget")
return
QUEST = Quest(406,qn,"Path of the Elven Knight")
QUEST.addStartNpc(30327)
QUEST.addTalkId(30327)
QUEST.addTalkId(30317)
QUEST.addTalkId(30327)
QUEST.addKillId(20035)
QUEST.addKillId(20042)
QUEST.addKillId(20045)
QUEST.addKillId(20051)
QUEST.addKillId(20054)
QUEST.addKillId(20060)
QUEST.addKillId(20782)
\ No newline at end of file
<html><body>Blacksmith Kluto:<br>
Oh ho, so you want to be an Elven Knight? Of course, I know how to make the brooch. However, nothing in this world is free ... If you want the Elven Knight brooch, you must first do me a service.<br>
<a action="bypass -h Quest 406_PathToElvenKnight 30317-02.htm">Ask about the favor</a>
</body></html>
Oh ho, so you want to be an Elven Knight? Of course, I know how to make the brooch. However, nothing in this world is free ... If you want the Elven Knight Brooch, you must first do me a service.<br>
<a action="bypass -h Quest Q00406_PathOfTheElvenKnight 30317-02.html">Ask about the favor</a>
</body></html>
\ No newline at end of file
<html><body>Blacksmith Kluto:<br>
East of here, there is a camp of the ol mahums. They are indeed ferocious scoundrels. Their trainees come out to the outskirts of the camp, and I want you to get rid of them. You need not know the reason.<br>
There will be about twenty of them. Hmm ... I would have to know whether or not you really killed all twenty. If you bring me<font color="LEVEL"> twenty of the jewels that the Ol mahums carry with them, I will accommodate you</font>. I'll give you this so you do not forget. Now, off you go!
</body></html>
East of here, there is a camp of the Ol Mahums. They are indeed ferocious scoundrels. Their trainees come out to the southeast of the Abandoned Camp, and I want you to get rid of them. You need not know the reason.<br>
There will be about twenty of them. Hmm ... I would have to know whether or not you really killed all twenty. If you bring me <font color="LEVEL">twenty of the jewels that the Ol Mahums carry with them, I will accommodate you</font>. I'll give you this so you do not forget. Now, off you go!
</body></html>
\ No newline at end of file
<html><body>Blacksmith Kluto:<br>
Why have you returned so early? Were you afraid? They are only ol mahum rookies ... You are quite a timid fellow.<br>
If I may give you a piece of advice, don't go deep into the camp. If the ol mahum come upon you in a group, with your skills you'd never be able to deal with them. Do you understand what I'm saying? Well, be off now!
</body></html>
Why have you returned so early? Were you afraid? They are only Ol Mahum Novices... You are quite timid.<br>
If I may give you a piece of advice, don't go deep into the camp. If the Ol Mahum come upon you in a group, with your skills you'd never be able to deal with them. Do you understand what I'm saying? Well, be off now!
</body></html>
\ No newline at end of file
<html><body>Blacksmith Kluto:<br>
Did I not tell you to bring twenty jewels? I cannot accommodate you even if you are only one short.
</body></html>
</body></html>
\ No newline at end of file
<html><body>Blacksmith Kluto:<br>
Amazing! To be frank, I wasn't expecting much out of you. Indeed, Master Sorius knows a good candidate. To tell the truth, bringing back the emeralds was also part of the test. Since Sorius saved my life long ago, I have been assisting him in testing young Elven Fighters. When we have some time, I will tell you how Sorius saved me from the Orcs.<br>
Give me the topaz pieces and emerald pieces. These jewels will be used as materials to make the brooches for the next youngsters who qualify to become Elven Knights. Your brooch has already been made from the jewels collected by those that took the test before you.<br>
Now take this box. In it is the completed Elven Knight brooch. Take this to<font color="LEVEL"> Master Sorius</font> and he will conduct the official presentation. You have rightfully earned it.
</body></html>
Amazing! To be frank, I wasn't expecting much out of you. Indeed, Master Sorius knows a good candidate. To tell the truth, bringing back the Emeralds was also part of the test. Since Sorius saved my life long ago, I have been assisting him in testing young Elven Fighters. When we have some time, I will tell you how Sorius saved me from the Orcs.<br>
Give me the Topaz Pieces and Emerald Pieces. These jewels will be used as materials to make the brooches for the next youngsters who qualify to become Elven Knights. Your brooch has already been made from the jewels collected by those that took the test before you.<br>
Now take this box. In it is the completed Elven Knight Brooch. Take this to <font color="LEVEL">Master Sorius</font> and he will conduct the official presentation. You have rightfully earned it.
</body></html>
\ No newline at end of file
<html><body>Blacksmith Kluto:<br>
Have you not gone yet? Aren't you eager to begin your career as an Elven Knight. Get along now to Master Sorius!
</body></html>
</body></html>
\ No newline at end of file
<html><body>Master Sorius:<br>
Greetings, child in search of the training of the sword. When I look at the new candidates like yourself that seek me, I am sure that the long tradition of our Elven race is being continued.<br>
<a action="bypass -h Quest 406_PathToElvenKnight 30327-05.htm">Say you want to be an Elven Knight</a>
</body></html>
<a action="bypass -h Quest Q00406_PathOfTheElvenKnight ACCEPT">Say you want to be an Elven Knight</a>
</body></html>
\ No newline at end of file
<html><body>Sorius:<br>
Haven't you already chosen the path that you must take? Train yourself more before aspiring to a higher level.
</body></html>
</body></html>
\ No newline at end of file
<html><body>Sorius:<br>
You are already walking the path of an Elven Knight. Train yourself more before proceeding to a higher level. May the starlight guide you.
</body></html>
</body></html>
\ No newline at end of file
<html><body>Master Sorius:<br>
Ah, it seems that you are still inexperienced. Just from watching your footwork and movements, I can tell that you are not ready to learn the skills I teach. Be patient and keep training. I see in your eyes that you have the passion and conviction to succeed. I will look forward to training you when you are truly ready!<br>
(Only characters level 18 and above may undertake this quest.)
</body></html>
\ No newline at end of file
<html><body>Master Sorius:<br>
I see you have the <font color="LEVEL">Elven Knight Brooch</font>. Take the brooch and go to <font color="LEVEL">Grand Master Rains</font>. Then he will change your profession to Elven Knight.
</body></html>
\ No newline at end of file
<html><body>Master Sorius:<br>
Elven Knights choose the path of the sword over archery, both of which were developed by our race for thousands of years. These days, many Elven Knights enter the Human world to practice the will of Einhasad and Eva, even though they were originally created to protect the Mother Trees from invaders.<br>
We must test your skills to see if you have what it takes to become an Elven Knight. This is a test to judge your skills, but I am sure one of your level will pass with no particular difficulties. What do you say? Will you assume the challenge of the test?<br>
<a action="bypass -h Quest 406_PathToElvenKnight 30327-06.htm">Challenge the test</a>
</body></html>
<a action="bypass -h Quest Q00406_PathOfTheElvenKnight 30327-06.htm">Challenge the test</a>
</body></html>
\ No newline at end of file
<html><body>Master Sorius:<br>
There is a place called the<font color="LEVEL"> Ruins of Agony</font> in the war-devastated area at the northern part of Gludio. Cruel and violent undead skeletons and the spartoi are disturbing and harming innocent people who travel near there. Elven Knights follow the teachings of Einhasad and Eva. There is no better place than the Ruins of Agony where an Elven Knight can perform his or her duty. If you don't know how to go to the Ruins of Agony, ask Guard Babenco.<br>
Please go to the Ruins of Agony and hunt<font color="LEVEL"> skeletons and spartoi</font>. If you defeat the undead, you will be able to get some<font color="LEVEL"> topaz pieces</font>. You must bring back twenty of these jewels. Also, you must be extra careful because those undead can help each other.<br>
There is a place called the <font color="LEVEL">Ruins of Agony</font> in the war-devastated area at the northern part of Gludio. Cruel and violent undead skeletons and the spartoi are disturbing and harming innocent people who travel near there. Elven Knights follow the teachings of Einhasad and Eva. There is no better place than the Ruins of Agony where an Elven Knight can perform his or her duty. If you don't know how to go to the Ruins of Agony, ask Guard Babenco.<br>
Please go to the Ruins of Agony and hunt <font color="LEVEL">skeletons and spartoi</font>. If you defeat the undead, you will be able to get some <font color="LEVEL">Topaz Pieces</font>. You must bring back twenty of these jewels. Also, you must be extra careful because those undead can help each other.<br>
This is your first test. Now, it's time to test your talent. I will pray for you to distinguish yourself in war.
</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