From 51b4bcf5716b7448ffa8bc422bce99d566a6b968 Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Thu, 23 Jul 2020 03:21:28 +0000 Subject: [PATCH] Resolve the conflict between quests 636 and 637. Contributed by caioconc. --- .../teleports/PaganTeleporters/PaganTeleporters.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/L2J_Mobius_C6_Interlude/dist/game/data/scripts/teleports/PaganTeleporters/PaganTeleporters.java b/L2J_Mobius_C6_Interlude/dist/game/data/scripts/teleports/PaganTeleporters/PaganTeleporters.java index 823ff7a6a1..9a09937690 100644 --- a/L2J_Mobius_C6_Interlude/dist/game/data/scripts/teleports/PaganTeleporters/PaganTeleporters.java +++ b/L2J_Mobius_C6_Interlude/dist/game/data/scripts/teleports/PaganTeleporters/PaganTeleporters.java @@ -26,6 +26,7 @@ public class PaganTeleporters extends Quest { // Items private static final int VISITOR_MARK = 8064; + private static final int FADED_VISITOR_MARK = 8065; private static final int PAGAN_MARK = 8067; public PaganTeleporters() @@ -66,6 +67,12 @@ public class PaganTeleporters extends Quest case 32034: if (st.hasQuestItems(VISITOR_MARK) || st.hasQuestItems(PAGAN_MARK)) { + if (st.hasQuestItems(VISITOR_MARK)) + { + st.takeItems(VISITOR_MARK, -1); + st.giveItems(FADED_VISITOR_MARK, 1); + } + DoorData.getInstance().getDoor(19160001).openMe(); startQuestTimer("Close_Door1", 10000, npc, player, false); htmltext = "FadedMark.htm";