Kerberos 17 years ago
parent
commit
3ea17bf9f1

+ 0 - 1
datapack_development/data/scripts/quests/23_LidiasHeart/__init__.py

@@ -166,7 +166,6 @@ class Quest (JQuest) :
 
 QUEST     = Quest(23,qn,"Lidia's Heart")
 
-QUEST.setInitialState(CREATED)
 QUEST.addStartNpc(Innocentin)
 
 QUEST.addTalkId(Innocentin)

+ 1 - 1
datapack_development/data/scripts/quests/622_DeliveryOfSpecialLiquor/__init__.py

@@ -8,7 +8,7 @@ from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest
 qn = "622_DeliveryOfSpecialLiquor"
 
 #NPC
-LIETTA - 31267
+LIETTA = 31267
 JEREMY = 31521
 PULIN = 31543
 NAFF = 31544

+ 2 - 4
datapack_development/data/scripts/teleports/1630_PaganTeleporters/__init__.py

@@ -29,13 +29,11 @@ class Quest (JQuest):
     npcId = npc.getNpcId()
     htmltext = ""
     if npcId == 32034 :
+          if not st.getQuestItemsCount()in [8064,8065,8067]:
+             return "<html><body>The Temple Gatekeeper:<br>You have nothing that would cover the holes.<br>(You must have a Visitor's Mark, a Faded Visitor's Mark, or a Pagan's Mark in order to open this door.)</body></html>"
           if st.getQuestItemsCount(8064) :
              st.takeItems(8064,1) # TODO: this part must happen when u walk through doors >.<
              st.giveItems(8065,1)
-          elif st.getQuestItemsCount(8065) :
-             break
-          else:
-             return "<html><body>The Temple Gatekeeper:<br>You have nothing that would cover the holes.<br>(You must have a Visitor's Mark, a Faded Visitor's Mark, or a Pagan's Mark in order to open this door.)</body></html>"
           htmltext = "FadedMark.htm"
           DoorTable.getInstance().getDoor(19160001).openMe()
           self.startQuestTimer("Close_Door1",10000,none,none)