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

BETA: Quest '''Egg Delivery''' (621) in Java.

	Patch by: janiko
	Reviewed by: Adry_85, jurchiks, xban1x
	Tested by: Adry_85
parent f953a9dc
No related branches found
No related tags found
No related merge requests found
Showing
with 25 additions and 190 deletions
...@@ -589,7 +589,7 @@ quests/Q00617_GatherTheFlames/Q00617_GatherTheFlames.java ...@@ -589,7 +589,7 @@ quests/Q00617_GatherTheFlames/Q00617_GatherTheFlames.java
quests/Q00618_IntoTheFlame/Q00618_IntoTheFlame.java quests/Q00618_IntoTheFlame/Q00618_IntoTheFlame.java
quests/Q00619_RelicsOfTheOldEmpire/Q00619_RelicsOfTheOldEmpire.java quests/Q00619_RelicsOfTheOldEmpire/Q00619_RelicsOfTheOldEmpire.java
quests/620_FourGoblets/__init__.py quests/620_FourGoblets/__init__.py
quests/621_EggDelivery/__init__.py quests/Q00621_EggDelivery/Q00621_EggDelivery.java
quests/622_DeliveryOfSpecialLiquor/__init__.py quests/622_DeliveryOfSpecialLiquor/__init__.py
quests/623_TheFinestFood/__init__.py quests/623_TheFinestFood/__init__.py
quests/Q00624_TheFinestIngredientsPart1/Q00624_TheFinestIngredientsPart1.java quests/Q00624_TheFinestIngredientsPart1/Q00624_TheFinestIngredientsPart1.java
......
<html><body>Chef Jeremy:<br>
You look like you could use a few extra adena...<br>
Well I'm looking for a helper! You'll earn an honest wage around here, that's for sure!<br>
All you have to do is take these hard-boiled eggs to my customers. Their names are already written on them. Deliver them quickly, and who knows? I might teach you a secret cooking technique! Ha!<br>
<a action="bypass -h Quest 621_EggDelivery 31521-1.htm">I'll deliver your eggs.</a>
</body></html>
\ No newline at end of file
<html><body>Chef Jeremy:<br>
OK, OK!<br>
Did Did you?<br>
<a action="bypass -h Quest 621_EggDelivery 31521-3.htm">"I completed the delivery."</a>
</body></html>
\ No newline at end of file
<html><body>Jeremy:<br>
Hey, what are you doing here? you should've visited Valentine in the Town of Goddard. I don't have any adena to give you.
</body></html>
\ No newline at end of file
<html><body>Pulin:<br>I'm starving! When will that eggman get here?<br>
<a action="bypass -h Quest 621_EggDelivery 31543-1.htm">I've got some boiled eggs for you.</a></body></html>
\ No newline at end of file
<html><body>Pulin:<br>Woohoo!<br>Yummy! There's nothing like a nice boiled egg at the hot springs!<br>I could eat a thousand of these!<br>Oh, thank you for the eggs! Here's your money. I know you are busy, so leave now. There are many places you must be, but here is not one of them.</body></html>
\ No newline at end of file
<html><body>Naff:<br>Oh, that feels great! If only I had some boiled eggs to go with it!<br>
<a action="bypass -h Quest 621_EggDelivery 31544-1.htm">I have some boiled eggs for you!</a></body></html>
\ No newline at end of file
<html><body>Naff:<br>Wow, this is great!</body></html>
\ No newline at end of file
<html><body>Crocus:<br>The hot springs just aren't the same without hard boiled eggs! Do you have any eggs? Do you?!<br>
<a action="bypass -h Quest 621_EggDelivery 31545-1.htm">I've got your eggs right here.</a></body></html>
\ No newline at end of file
<html><body>Crocus:<br>There's nothing quite like the taste of a good egg!<br>Jeremy's eggs taste better than anybody's</body></html>
\ No newline at end of file
<html><body>Kuber:<br>Hot hot hot springs!<br>
I'm so happy to be here! It's so heavenly... My spirit soars!<br>
All my worries~ Far~far~away~ Come what may~<br>
I'll take it easy~~whatever happens~<br>
<a action="bypass -h Quest 621_EggDelivery 31546-1.htm">Egg delivery, sir!</a></body></html>
\ No newline at end of file
<html><body>Kuber:<br>Oh my god!<br>This is it! It's so good!</body></html>
\ No newline at end of file
<html><body>Beorin:<br>I'm so hungry I could eat a thousand wyvern eggs! You don't happen to have any eggs, do you?<br>
<a action="bypass -h Quest 621_EggDelivery 31547-1.htm">I've got your eggs right here.</a></body></html>
\ No newline at end of file
<html><body>Beorin:<br>What excellent timing! If you were a minute later, I would've starved to death! Here's some money for your eggs!</body></html>
\ No newline at end of file
# Made by disKret
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 = "621_EggDelivery"
#NPC
JEREMY = 31521
PULIN = 31543
NAFF = 31544
CROCUS = 31545
KUBER = 31546
BEORIN = 31547
VALENTINE = 31584
#QUEST ITEMS
BOILED_EGGS = 7195
FEE_OF_EGGS = 7196
#REWARDS
ADENA = 57
HASTE_POTION = 734
#Chance to get an S-grade random recipe instead of just adena and haste potion
RPCHANCE=10
#Change this value to 1 if you wish 100% recipes, default 70%
ALT_RP100=0
class Quest (JQuest) :
def __init__(self,id,name,descr):
JQuest.__init__(self,id,name,descr)
self.questItemIds = [BOILED_EGGS, FEE_OF_EGGS]
def onEvent (self,event,st) :
htmltext = event
cond=st.getInt("cond")
if event == "31521-1.htm" :
if cond==0:
st.set("cond","1")
st.setState(State.STARTED)
st.giveItems(BOILED_EGGS,5)
st.playSound("ItemSound.quest_accept")
else:
htmltext = Quest.getNoQuestMsg(player)
elif event == "31543-1.htm" :
if st.getQuestItemsCount(BOILED_EGGS):
if cond==1:
st.takeItems(BOILED_EGGS,1)
st.giveItems(FEE_OF_EGGS,1)
st.set("cond","2")
else:
htmltext = Quest.getNoQuestMsg(player)
else:
htmltext="LMFAO!"
st.exitQuest(1)
elif event == "31544-1.htm" :
if st.getQuestItemsCount(BOILED_EGGS):
if cond==2:
st.takeItems(BOILED_EGGS,1)
st.giveItems(FEE_OF_EGGS,1)
st.set("cond","3")
else:
htmltext = Quest.getNoQuestMsg(player)
else:
htmltext="LMFAO!"
st.exitQuest(1)
elif event == "31545-1.htm" :
if st.getQuestItemsCount(BOILED_EGGS):
if cond==3:
st.takeItems(BOILED_EGGS,1)
st.giveItems(FEE_OF_EGGS,1)
st.set("cond","4")
else:
htmltext = Quest.getNoQuestMsg(player)
else:
htmltext="LMFAO!"
st.exitQuest(1)
elif event == "31546-1.htm" :
if st.getQuestItemsCount(BOILED_EGGS):
if cond==4:
st.takeItems(BOILED_EGGS,1)
st.giveItems(FEE_OF_EGGS,1)
st.set("cond","5")
else:
htmltext = Quest.getNoQuestMsg(player)
else:
htmltext="LMFAO!"
st.extiQuest(1)
elif event == "31547-1.htm" :
if st.getQuestItemsCount(BOILED_EGGS):
if cond==5:
st.takeItems(BOILED_EGGS,1)
st.giveItems(FEE_OF_EGGS,1)
st.set("cond","6")
else:
htmltext = Quest.getNoQuestMsg(player)
else:
htmltext="LMFAO!"
st.extiQuest(1)
elif event == "31521-3.htm" :
st.set("cond","7")
elif event == "31584-2.htm" :
if st.getQuestItemsCount(FEE_OF_EGGS) == 5:
st.takeItems(FEE_OF_EGGS,5)
if self.getRandom(100) < RPCHANCE :
st.giveItems(range(6847+ALT_RP100,6853,2)[self.getRandom(3)],1)
else:
st.giveItems(ADENA,18800)
st.giveItems(HASTE_POTION,1)
st.playSound("ItemSound.quest_finish")
st.exitQuest(1)
else:
htmltext = Quest.getNoQuestMsg(player)
return htmltext
def onTalk (self,npc,player):
htmltext = Quest.getNoQuestMsg(player)
st = player.getQuestState(qn)
if st :
npcId = npc.getId()
id = st.getState()
if id == State.CREATED :
st.set("cond","0")
cond = st.getInt("cond")
if npcId == 31521 and cond == 0 :
if player.getLevel() >= 68 :
htmltext = "31521-0.htm"
else :
st.exitQuest(1)
elif id == State.STARTED :
if npcId == 31543 and cond == 1 and st.getQuestItemsCount(BOILED_EGGS) :
htmltext = "31543-0.htm"
elif npcId == 31544 and cond == 2 and st.getQuestItemsCount(BOILED_EGGS) :
htmltext = "31544-0.htm"
elif npcId == 31545 and cond == 3 and st.getQuestItemsCount(BOILED_EGGS) :
htmltext = "31545-0.htm"
elif npcId == 31546 and cond == 4 and st.getQuestItemsCount(BOILED_EGGS) :
htmltext = "31546-0.htm"
elif npcId == 31547 and cond == 5 and st.getQuestItemsCount(BOILED_EGGS) :
htmltext = "31547-0.htm"
elif npcId == 31521 and cond == 6 and st.getQuestItemsCount(FEE_OF_EGGS) == 5 :
htmltext = "31521-2.htm"
elif npcId == 31521 and cond == 7 and st.getQuestItemsCount(FEE_OF_EGGS) == 5 :
htmltext = "31521-4.htm"
elif npcId == 31584 and cond == 7 and st.getQuestItemsCount(FEE_OF_EGGS) == 5 :
htmltext = "31584-1.htm"
return htmltext
QUEST = Quest(621,qn,"Egg Delivery")
QUEST.addStartNpc(31521)
for i in range(31543,31548)+[31521,31584]:
QUEST.addTalkId(i)
\ No newline at end of file
<html><body>Chef Jeremy:<br>
You look like you could use a few extra Adena...<br>
Well I'm looking for a helper! You'll earn an honest wage around here, that's for sure!<br>
All you have to do is take these steaming hot hard-boiled eggs I just made to my customers. Their names are already written on them. Deliver them quickly, and who knows? I might teach you a secret cooking technique! Ha!<br>
<a action="bypass -h Quest Q00621_EggDelivery 31521-03.htm">"I'll deliver your eggs."</a>
</html></body>
\ No newline at end of file
<html><body>Chef Jeremy:<br>
Many dangerous and ferocious beasts lurk these parts. I'd really hate to have to bury another assistant!<br>
(Only a character of level 68 or above may undertake this quest.)
</html></body>
\ No newline at end of file
<html><body>Chef Jeremy:<br> <html><body>Chef Jeremy:<br>
Take these hard-boiled eggs to my customers at the hot springs resort.<br> Take these hard-Boiled Eggs to my customers at the hot springs resort.<br>
Everyone likes their eggs done a different way. You must deliver them in the order!<br> Everyone likes their eggs done a different way.You must deliver them in the order!<br>
Look at the note I gave you for details, and don't ever forget our motto, "The Customer Always Comes First"! Look at the note I gave you for details, and don't ever forget our motto, "The Customer Always Comes First"!
</body></html> </html></body>
\ No newline at end of file \ No newline at end of file
<html><body>Chef Jeremy:<br>
What are you waiting for?<br>
My customers must be salivating, waiting for my delicious eggs to arrive! Get going!
</html></body>
\ No newline at end of file
<html><body>Jeremy:<br>
OK, OK!<br>
Did you finish the delivery?<br>
<a action="bypass -h Quest Q00621_EggDelivery 31521-06.html">"I completed the delivery."</a>
</html></body>
\ 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