123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504 |
- # Made by Mr. Have fun! Version 0.2
- 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 = "330_AdeptOfTaste"
- INGREDIENT_LIST_ID = 1420
- SONIAS_BOTANYBOOK_ID = 1421
- RED_MANDRAGORA_ROOT_ID = 1422
- WHITE_MANDRAGORA_ROOT_ID = 1423
- RED_MANDRAGORA_SAP_ID = 1424
- WHITE_MANDRAGORA_SAP_ID = 1425
- JAYCUBS_INSECTBOOK_ID = 1426
- NECTAR_ID = 1427
- ROYAL_JELLY_ID = 1428
- HONEY_ID = 1429
- GOLDEN_HONEY_ID = 1430
- PANOS_CONTRACT_ID = 1431
- HOBGOBLIN_AMULET_ID = 1432
- DIONIAN_POTATO_ID = 1433
- GLYVKAS_BOTANYBOOK_ID = 1434
- GREEN_MARSH_MOSS_ID = 1435
- BROWN_MARSH_MOSS_ID = 1436
- GREEN_MOSS_BUNDLE_ID = 1437
- BROWN_MOSS_BUNDLE_ID = 1438
- ROLANTS_CREATUREBOOK_ID = 1439
- MONSTER_EYE_BODY_ID = 1440
- MONSTER_EYE_MEAT_ID = 1441
- JONAS_STEAK_DISH1_ID = 1442
- JONAS_STEAK_DISH2_ID = 1443
- JONAS_STEAK_DISH3_ID = 1444
- JONAS_STEAK_DISH4_ID = 1445
- JONAS_STEAK_DISH5_ID = 1446
- MIRIENS_REVIEW1_ID = 1447
- MIRIENS_REVIEW2_ID = 1448
- MIRIENS_REVIEW3_ID = 1449
- MIRIENS_REVIEW4_ID = 1450
- MIRIENS_REVIEW5_ID = 1451
- ADENA_ID = 57
- JONAS_SALAD_RECIPE_ID = 1455
- JONAS_SAUCE_RECIPE_ID = 1456
- JONAS_STEAK_RECIPE_ID = 1457
- def has_list(st) :
- return st.getQuestItemsCount(INGREDIENT_LIST_ID)
- def has_review(st) :
- return st.getQuestItemsCount(MIRIENS_REVIEW1_ID)+\
- st.getQuestItemsCount(MIRIENS_REVIEW2_ID)+\
- st.getQuestItemsCount(MIRIENS_REVIEW3_ID)+\
- st.getQuestItemsCount(MIRIENS_REVIEW4_ID)+\
- st.getQuestItemsCount(MIRIENS_REVIEW5_ID)
- def has_dish(st) :
- return st.getQuestItemsCount(JONAS_STEAK_DISH1_ID)+\
- st.getQuestItemsCount(JONAS_STEAK_DISH2_ID)+\
- st.getQuestItemsCount(JONAS_STEAK_DISH3_ID)+\
- st.getQuestItemsCount(JONAS_STEAK_DISH4_ID)+\
- st.getQuestItemsCount(JONAS_STEAK_DISH5_ID)
- def special_ingredients(st):
- return st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID)+\
- st.getQuestItemsCount(GOLDEN_HONEY_ID)+\
- st.getQuestItemsCount(BROWN_MOSS_BUNDLE_ID)
- def ingredients_count(st) :
- return st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+\
- st.getQuestItemsCount(HONEY_ID)+\
- st.getQuestItemsCount(DIONIAN_POTATO_ID)+\
- st.getQuestItemsCount(GREEN_MOSS_BUNDLE_ID)+\
- st.getQuestItemsCount(MONSTER_EYE_MEAT_ID)+\
- special_ingredients(st)
- class Quest (JQuest) :
- def __init__(self,id,name,descr):
- JQuest.__init__(self,id,name,descr)
- self.questItemIds = range(1420,1452)
- def onEvent (self,event,st) :
- htmltext = event
- if event == "1" :
- st.set("cond","1")
- st.setState(State.STARTED)
- st.playSound("ItemSound.quest_accept")
- htmltext = "30469-03.htm"
- st.giveItems(INGREDIENT_LIST_ID,1)
- elif event == "30062_1" :
- htmltext = "30062-05.htm"
- st.takeItems(SONIAS_BOTANYBOOK_ID,1)
- st.takeItems(RED_MANDRAGORA_ROOT_ID,-1)
- st.takeItems(WHITE_MANDRAGORA_ROOT_ID,-1)
- st.giveItems(RED_MANDRAGORA_SAP_ID,1)
- elif event == "30073_1" :
- htmltext = "30073-05.htm"
- st.takeItems(JAYCUBS_INSECTBOOK_ID,1)
- st.takeItems(NECTAR_ID,-1)
- st.takeItems(ROYAL_JELLY_ID,-1)
- st.giveItems(HONEY_ID,1)
- elif event == "30067_1" :
- htmltext = "30067-05.htm"
- st.takeItems(GLYVKAS_BOTANYBOOK_ID,1)
- st.takeItems(GREEN_MARSH_MOSS_ID,-1)
- st.takeItems(BROWN_MARSH_MOSS_ID,-1)
- st.giveItems(GREEN_MOSS_BUNDLE_ID,1)
- return htmltext
- def onTalk (self,npc,player):
- htmltext = Quest.getNoQuestMsg(player)
- st = self.getQuestState(player, True)
- if not st : return htmltext
- npcId = npc.getId()
- id = st.getState()
- if npcId != 30469 and id != State.STARTED : return htmltext
- if id == State.CREATED :
- st.set("cond","0")
- if npcId == 30469 and st.getInt("cond")==0 :
- if player.getLevel() >= 24 :
- htmltext = "30469-02.htm"
- return htmltext
- else:
- htmltext = "30469-01.htm"
- st.exitQuest(1)
- elif npcId == 30469 and st.getInt("cond") and has_list(st) and ingredients_count(st) < 5 :
- htmltext = "30469-04.htm"
- elif npcId == 30469 and st.getInt("cond") and has_list(st) and ingredients_count(st) >= 5 :
- if special_ingredients(st) == 0 :
- if self.getRandom(10)<1 :
- htmltext = "30469-05t2.htm"
- st.giveItems(JONAS_STEAK_DISH2_ID,1)
- else:
- htmltext = "30469-05t1.htm"
- st.giveItems(JONAS_STEAK_DISH1_ID,1)
- elif special_ingredients(st) == 1 :
- if self.getRandom(10)<1 :
- htmltext = "30469-05t3.htm"
- st.giveItems(JONAS_STEAK_DISH3_ID,1)
- else:
- htmltext = "30469-05t2.htm"
- st.giveItems(JONAS_STEAK_DISH2_ID,1)
- elif special_ingredients(st) == 2 :
- if self.getRandom(10)<1 :
- htmltext = "30469-05t4.htm"
- st.giveItems(JONAS_STEAK_DISH4_ID,1)
- else:
- htmltext = "30469-05t3.htm"
- st.giveItems(JONAS_STEAK_DISH3_ID,1)
- elif special_ingredients(st) == 3 :
- if self.getRandom(10)<1 :
- htmltext = "30469-05t5.htm"
- st.giveItems(JONAS_STEAK_DISH5_ID,1)
- st.playSound("ItemSound.quest_jackpot")
- else:
- htmltext = "30469-05t4.htm"
- st.giveItems(JONAS_STEAK_DISH4_ID,1)
- st.takeItems(INGREDIENT_LIST_ID,1)
- st.takeItems(RED_MANDRAGORA_SAP_ID,1)
- st.takeItems(WHITE_MANDRAGORA_SAP_ID,1)
- st.takeItems(HONEY_ID,1)
- st.takeItems(GOLDEN_HONEY_ID,1)
- st.takeItems(DIONIAN_POTATO_ID,1)
- st.takeItems(GREEN_MOSS_BUNDLE_ID,1)
- st.takeItems(BROWN_MOSS_BUNDLE_ID,1)
- st.takeItems(MONSTER_EYE_MEAT_ID,1)
- elif npcId == 30469 and st.getInt("cond") and ingredients_count(st) == 0 and not has_list(st) and has_dish(st) and not has_review(st) :
- htmltext = "30469-06.htm"
- elif npcId == 30469 and st.getInt("cond") and ingredients_count(st) == 0 and not has_list(st) and not has_dish(st) and has_review(st) :
- if st.getQuestItemsCount(MIRIENS_REVIEW1_ID) :
- htmltext = "30469-06t1.htm"
- st.takeItems(MIRIENS_REVIEW1_ID,1)
- st.giveItems(ADENA_ID,7500)
- st.addExpAndSp(6000,0)
- elif st.getQuestItemsCount(MIRIENS_REVIEW2_ID) :
- htmltext = "30469-06t2.htm"
- st.takeItems(MIRIENS_REVIEW2_ID,1)
- st.giveItems(ADENA_ID,9000)
- st.addExpAndSp(7000,0)
- elif st.getQuestItemsCount(MIRIENS_REVIEW3_ID) :
- htmltext = "30469-06t3.htm"
- st.takeItems(MIRIENS_REVIEW3_ID,1)
- st.giveItems(ADENA_ID,5800)
- st.giveItems(JONAS_SALAD_RECIPE_ID,1)
- st.addExpAndSp(9000,0)
- elif st.getQuestItemsCount(MIRIENS_REVIEW4_ID) :
- htmltext = "30469-06t4.htm"
- st.takeItems(MIRIENS_REVIEW4_ID,1)
- st.giveItems(ADENA_ID,6800)
- st.giveItems(JONAS_SAUCE_RECIPE_ID,1)
- st.addExpAndSp(10500,0)
- elif st.getQuestItemsCount(MIRIENS_REVIEW5_ID) :
- htmltext = "30469-06t5.htm"
- st.takeItems(MIRIENS_REVIEW5_ID,1)
- st.giveItems(ADENA_ID,7800)
- st.giveItems(JONAS_STEAK_RECIPE_ID,1)
- st.addExpAndSp(12000,0)
- st.playSound("ItemSound.quest_finish")
- st.exitQuest(1)
- elif npcId == 30461 and st.getInt("cond") and has_list(st) :
- htmltext = "30461-01.htm"
- elif npcId == 30461 and st.getInt("cond") and ingredients_count(st) == 0 and not has_list(st) and has_dish(st) and not has_review(st) :
- if st.getQuestItemsCount(JONAS_STEAK_DISH1_ID) :
- htmltext = "30461-02t1.htm"
- st.takeItems(JONAS_STEAK_DISH1_ID,1)
- st.giveItems(MIRIENS_REVIEW1_ID,1)
- elif st.getQuestItemsCount(JONAS_STEAK_DISH2_ID) :
- htmltext = "30461-02t2.htm"
- st.takeItems(JONAS_STEAK_DISH2_ID,1)
- st.giveItems(MIRIENS_REVIEW2_ID,1)
- elif st.getQuestItemsCount(JONAS_STEAK_DISH3_ID) :
- htmltext = "30461-02t3.htm"
- st.takeItems(JONAS_STEAK_DISH3_ID,1)
- st.giveItems(MIRIENS_REVIEW3_ID,1)
- elif st.getQuestItemsCount(JONAS_STEAK_DISH4_ID) :
- htmltext = "30461-02t4.htm"
- st.takeItems(JONAS_STEAK_DISH4_ID,1)
- st.giveItems(MIRIENS_REVIEW4_ID,1)
- elif st.getQuestItemsCount(JONAS_STEAK_DISH5_ID) :
- htmltext = "30461-02t5.htm"
- st.takeItems(JONAS_STEAK_DISH5_ID,1)
- st.giveItems(MIRIENS_REVIEW5_ID,1)
- elif npcId == 30461 and st.getInt("cond") and ingredients_count(st) == 0 and not has_list(st) and not has_dish(st) and has_review(st) :
- htmltext = "30461-04.htm"
- elif npcId == 30062 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and not st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID)==0) :
- htmltext = "30062-01.htm"
- st.giveItems(SONIAS_BOTANYBOOK_ID,1)
- elif npcId == 30062 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID))<40 and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID)==0) :
- htmltext = "30062-02.htm"
- elif npcId == 30062 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID))>=40 and st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID)<40 and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID)==0) :
- htmltext = "30062-03.htm"
- elif npcId == 30062 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID))>=40 and st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID)>=40 and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID)==0) :
- htmltext = "30062-06.htm"
- st.takeItems(SONIAS_BOTANYBOOK_ID,1)
- st.takeItems(RED_MANDRAGORA_ROOT_ID,-1)
- st.takeItems(WHITE_MANDRAGORA_ROOT_ID,-1)
- st.giveItems(WHITE_MANDRAGORA_SAP_ID,1)
- elif npcId == 30062 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID)==0 and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID)>0) :
- htmltext = "30062-07.htm"
- elif npcId == 30073 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(JAYCUBS_INSECTBOOK_ID)==0 and (st.getQuestItemsCount(HONEY_ID)+st.getQuestItemsCount(GOLDEN_HONEY_ID)==0) :
- htmltext = "30073-01.htm"
- st.giveItems(JAYCUBS_INSECTBOOK_ID,1)
- elif npcId == 30073 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(JAYCUBS_INSECTBOOK_ID) and st.getQuestItemsCount(NECTAR_ID)<20 :
- htmltext = "30073-02.htm"
- elif npcId == 30073 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(JAYCUBS_INSECTBOOK_ID) and st.getQuestItemsCount(NECTAR_ID)>=20 and st.getQuestItemsCount(ROYAL_JELLY_ID)<10 :
- htmltext = "30073-03.htm"
- elif npcId == 30073 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(JAYCUBS_INSECTBOOK_ID) and st.getQuestItemsCount(NECTAR_ID)>=20 and st.getQuestItemsCount(ROYAL_JELLY_ID)>=10 :
- htmltext = "30073-06.htm"
- st.takeItems(JAYCUBS_INSECTBOOK_ID,1)
- st.takeItems(NECTAR_ID,-1)
- st.takeItems(ROYAL_JELLY_ID,-1)
- st.giveItems(GOLDEN_HONEY_ID,1)
- elif npcId == 30073 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(JAYCUBS_INSECTBOOK_ID)==0 and (st.getQuestItemsCount(HONEY_ID)+st.getQuestItemsCount(GOLDEN_HONEY_ID)==1) :
- htmltext = "30073-07.htm"
- elif npcId == 30078 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(PANOS_CONTRACT_ID)==0 and st.getQuestItemsCount(DIONIAN_POTATO_ID)==0 :
- htmltext = "30078-01.htm"
- st.giveItems(PANOS_CONTRACT_ID,1)
- elif npcId == 30078 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(PANOS_CONTRACT_ID) and st.getQuestItemsCount(HOBGOBLIN_AMULET_ID)<30 :
- htmltext = "30078-02.htm"
- elif npcId == 30078 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(PANOS_CONTRACT_ID) and st.getQuestItemsCount(HOBGOBLIN_AMULET_ID)>=30 :
- htmltext = "30078-03.htm"
- st.takeItems(PANOS_CONTRACT_ID,1)
- st.takeItems(HOBGOBLIN_AMULET_ID,-1)
- st.giveItems(DIONIAN_POTATO_ID,1)
- elif npcId == 30078 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(PANOS_CONTRACT_ID)==0 and st.getQuestItemsCount(DIONIAN_POTATO_ID) :
- htmltext = "30078-04.htm"
- elif npcId == 30067 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(GLYVKAS_BOTANYBOOK_ID)==0 and (st.getQuestItemsCount(GREEN_MOSS_BUNDLE_ID)+st.getQuestItemsCount(BROWN_MOSS_BUNDLE_ID)==0) :
- htmltext = "30067-01.htm"
- st.giveItems(GLYVKAS_BOTANYBOOK_ID,1)
- elif npcId == 30067 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(GLYVKAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(GREEN_MARSH_MOSS_ID)+st.getQuestItemsCount(BROWN_MARSH_MOSS_ID)<20) :
- htmltext = "30067-02.htm"
- elif npcId == 30067 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(GLYVKAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(GREEN_MARSH_MOSS_ID)+st.getQuestItemsCount(BROWN_MARSH_MOSS_ID)>=20) and st.getQuestItemsCount(BROWN_MARSH_MOSS_ID)<20 :
- htmltext = "30067-03.htm"
- elif npcId == 30067 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(GLYVKAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(GREEN_MARSH_MOSS_ID)+st.getQuestItemsCount(BROWN_MARSH_MOSS_ID)>=20) and st.getQuestItemsCount(BROWN_MARSH_MOSS_ID)>=20 :
- htmltext = "30067-06.htm"
- st.takeItems(GLYVKAS_BOTANYBOOK_ID,1)
- st.takeItems(GREEN_MARSH_MOSS_ID,-1)
- st.takeItems(BROWN_MARSH_MOSS_ID,-1)
- st.giveItems(BROWN_MOSS_BUNDLE_ID,1)
- elif npcId == 30067 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(GLYVKAS_BOTANYBOOK_ID)==0 and (st.getQuestItemsCount(GREEN_MOSS_BUNDLE_ID)+st.getQuestItemsCount(BROWN_MOSS_BUNDLE_ID)==1) :
- htmltext = "30067-07.htm"
- elif npcId == 30069 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(ROLANTS_CREATUREBOOK_ID)==0 and st.getQuestItemsCount(MONSTER_EYE_MEAT_ID)==0 :
- htmltext = "30069-01.htm"
- st.giveItems(ROLANTS_CREATUREBOOK_ID,1)
- elif npcId == 30069 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(ROLANTS_CREATUREBOOK_ID) and st.getQuestItemsCount(MONSTER_EYE_BODY_ID)<30 :
- htmltext = "30069-02.htm"
- elif npcId == 30069 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(ROLANTS_CREATUREBOOK_ID) and st.getQuestItemsCount(MONSTER_EYE_BODY_ID)>=30 :
- htmltext = "30069-03.htm"
- st.takeItems(ROLANTS_CREATUREBOOK_ID,1)
- st.takeItems(MONSTER_EYE_BODY_ID,-1)
- st.giveItems(MONSTER_EYE_MEAT_ID,1)
- elif npcId == 30069 and st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(ROLANTS_CREATUREBOOK_ID)==0 and st.getQuestItemsCount(MONSTER_EYE_MEAT_ID)==1 :
- htmltext = "30069-04.htm"
- return htmltext
- def onKill(self,npc,player,isPet):
- st = self.getQuestState(player, False)
- if not st : return
- if st.getState() != State.STARTED : return
-
- npcId = npc.getId()
- if npcId == 20265 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(ROLANTS_CREATUREBOOK_ID) and st.getQuestItemsCount(MONSTER_EYE_BODY_ID)<30 :
- n = self.getRandom(100)
- if n<75 :
- st.giveItems(MONSTER_EYE_BODY_ID,1)
- if st.getQuestItemsCount(MONSTER_EYE_BODY_ID) == 30 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- else:
- if st.getQuestItemsCount(MONSTER_EYE_BODY_ID) == 29 :
- st.giveItems(MONSTER_EYE_BODY_ID,1)
- st.playSound("ItemSound.quest_middle")
- else:
- st.giveItems(MONSTER_EYE_BODY_ID,2)
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20266 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(ROLANTS_CREATUREBOOK_ID) and st.getQuestItemsCount(MONSTER_EYE_BODY_ID)<30 :
- n = self.getRandom(10)
- if n<7 :
- st.giveItems(MONSTER_EYE_BODY_ID,1)
- if st.getQuestItemsCount(MONSTER_EYE_BODY_ID) == 30 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- else:
- if st.getQuestItemsCount(MONSTER_EYE_BODY_ID) == 29 :
- st.giveItems(MONSTER_EYE_BODY_ID,1)
- st.playSound("ItemSound.quest_middle")
- else:
- st.giveItems(MONSTER_EYE_BODY_ID,2)
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20226 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(GLYVKAS_BOTANYBOOK_ID) :
- n = self.getRandom(10)
- if n<9 :
- if st.getQuestItemsCount(GREEN_MARSH_MOSS_ID)<20 :
- st.giveItems(GREEN_MARSH_MOSS_ID,1)
- if st.getQuestItemsCount(GREEN_MARSH_MOSS_ID) == 20 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- else:
- if st.getQuestItemsCount(BROWN_MARSH_MOSS_ID)<20 :
- st.giveItems(BROWN_MARSH_MOSS_ID,1)
- if st.getQuestItemsCount(BROWN_MARSH_MOSS_ID) == 20 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20228 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(GLYVKAS_BOTANYBOOK_ID) :
- n = self.getRandom(100)
- if n<88 :
- if st.getQuestItemsCount(GREEN_MARSH_MOSS_ID)<20 :
- st.giveItems(GREEN_MARSH_MOSS_ID,1)
- if st.getQuestItemsCount(GREEN_MARSH_MOSS_ID) == 20 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- else:
- if st.getQuestItemsCount(BROWN_MARSH_MOSS_ID)<20 :
- st.giveItems(BROWN_MARSH_MOSS_ID,1)
- if st.getQuestItemsCount(BROWN_MARSH_MOSS_ID) == 20 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20147 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(PANOS_CONTRACT_ID) and st.getQuestItemsCount(HOBGOBLIN_AMULET_ID)<30 :
- st.giveItems(HOBGOBLIN_AMULET_ID,1)
- if st.getQuestItemsCount(HOBGOBLIN_AMULET_ID) == 30 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20204 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(JAYCUBS_INSECTBOOK_ID) :
- n = self.getRandom(100)
- if n<80 :
- if st.getQuestItemsCount(NECTAR_ID)<20 :
- st.giveItems(NECTAR_ID,1)
- if st.getQuestItemsCount(NECTAR_ID) == 20 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif n>95 :
- if st.getQuestItemsCount(ROYAL_JELLY_ID)<10 :
- st.giveItems(ROYAL_JELLY_ID,1)
- if st.getQuestItemsCount(ROYAL_JELLY_ID) == 10 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20229 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(JAYCUBS_INSECTBOOK_ID) :
- n = self.getRandom(100)
- if n<92 :
- if st.getQuestItemsCount(NECTAR_ID)<20 :
- st.giveItems(NECTAR_ID,1)
- if st.getQuestItemsCount(NECTAR_ID) == 20 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- else:
- if st.getQuestItemsCount(ROYAL_JELLY_ID)<10 :
- st.giveItems(ROYAL_JELLY_ID,1)
- if st.getQuestItemsCount(ROYAL_JELLY_ID) == 10 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20223 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID) == 0) :
- n = self.getRandom(100)
- if n<67 :
- if st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID)<40 :
- st.giveItems(RED_MANDRAGORA_ROOT_ID,1)
- if st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID) == 40 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif n>93 :
- if st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID)<40 :
- st.giveItems(WHITE_MANDRAGORA_ROOT_ID,1)
- if st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID) == 40 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20154 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID) == 0) :
- n = self.getRandom(100)
- if n<74 :
- if st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID)<40 :
- st.giveItems(RED_MANDRAGORA_ROOT_ID,1)
- if st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID) == 40 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif n>92 :
- if st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID)<40 :
- st.giveItems(WHITE_MANDRAGORA_ROOT_ID,1)
- if st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID) == 40 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20155 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID) == 0) :
- n = self.getRandom(100)
- if n<80 :
- if st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID)<40 :
- st.giveItems(RED_MANDRAGORA_ROOT_ID,1)
- if st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID) == 40 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif n>91 :
- if st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID)<40 :
- st.giveItems(WHITE_MANDRAGORA_ROOT_ID,1)
- if st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID) == 40 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- elif npcId == 20156 :
- if st.getInt("cond") and has_list(st) and ingredients_count(st)<5 and st.getQuestItemsCount(SONIAS_BOTANYBOOK_ID) and (st.getQuestItemsCount(RED_MANDRAGORA_SAP_ID)+st.getQuestItemsCount(WHITE_MANDRAGORA_SAP_ID) == 0) :
- n = self.getRandom(100)
- if n<90 :
- if st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID)<40 :
- st.giveItems(RED_MANDRAGORA_ROOT_ID,1)
- if st.getQuestItemsCount(RED_MANDRAGORA_ROOT_ID) == 40 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- else:
- if st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID)<40 :
- st.giveItems(WHITE_MANDRAGORA_ROOT_ID,1)
- if st.getQuestItemsCount(WHITE_MANDRAGORA_ROOT_ID) == 40 :
- st.playSound("ItemSound.quest_middle")
- else:
- st.playSound("ItemSound.quest_itemget")
- return
- QUEST = Quest(330,qn,"Adept Of Taste")
- QUEST.addStartNpc(30469)
- QUEST.addTalkId(30469)
- QUEST.addTalkId(30062)
- QUEST.addTalkId(30067)
- QUEST.addTalkId(30069)
- QUEST.addTalkId(30073)
- QUEST.addTalkId(30078)
- QUEST.addTalkId(30461)
- QUEST.addKillId(20147)
- QUEST.addKillId(20154)
- QUEST.addKillId(20155)
- QUEST.addKillId(20156)
- QUEST.addKillId(20204)
- QUEST.addKillId(20223)
- QUEST.addKillId(20226)
- QUEST.addKillId(20228)
- QUEST.addKillId(20229)
- QUEST.addKillId(20265)
- QUEST.addKillId(20266)
|