L2JMobius

High Five Fix Tragedy In Von Hellman Forest (QuestState 2)

Helionar · 3 · 5123

Offline Helionar

  • Heir
  • **
    • Posts: 38
Hello! One of my players noticed a problem just starting this Quest. Innocentin won't let you progress if you have the Cross of Einhasad in the inventory (QuestState 2). As the Quest log says that the Crucifix vanish after talking for the second time with Tifaren (QS 1 to 2), I called takeItems() to remove it. After this, you can talk to Innocentin and him will provide a new Cross of Einhasad. I don't know if this is retail-like, but it make sense right? He even makes a reference to you losing it.

Diff:

Code: [Select]
diff --git a/dist/game/data/scripts/quests/Q00022_TragedyInVonHellmannForest/Q00022_TragedyInVonHellmannForest.java b/dist/game/data/scripts/quests/Q00022_TragedyInVonHellmannForest/Q00022_TragedyInVonHellmannForest.java
index c163348a76491558037afb29b19ef35b52718931..e0aa2928aa354d0e448f70d142c584310927e016 100644
--- a/dist/game/data/scripts/quests/Q00022_TragedyInVonHellmannForest/Q00022_TragedyInVonHellmannForest.java
+++ b/dist/game/data/scripts/quests/Q00022_TragedyInVonHellmannForest/Q00022_TragedyInVonHellmannForest.java
@@ -152,6 +152,7 @@ public class Q00022_TragedyInVonHellmannForest extends Quest
  }
  else
  {
+ takeItems(player, CROSS_OF_EINHASAD, -1);
  qs.setCond(2, true);
  htmltext = "31334-07.html";
  }

Have a nice day!!