L2JMobius

C6 Quest The Wishing Potion

FanaticoLineage2 · 5 · 6798

Offline FanaticoLineage2

  • Heir
  • **
    • Posts: 13
After going to kill the tree in cruma tower, you talk to matild again and the quest does not continue, a loop is formed where it gives you infinitely alchemy text.




Online Mobius

  • Distinguished King
  • *****
    • Posts: 16135
Try this.
Code: [Select]
Index: dist/game/data/scripts/quests/Q334_TheWishingPotion/Q334_TheWishingPotion.java
===================================================================
--- dist/game/data/scripts/quests/Q334_TheWishingPotion/Q334_TheWishingPotion.java (revision 7463)
+++ dist/game/data/scripts/quests/Q334_TheWishingPotion/Q334_TheWishingPotion.java (working copy)
@@ -318,7 +318,7 @@
  final int npcId = npc.getNpcId();
  final int id = st.getState();
  int cond = 0;
- if (id != 1)
+ if (id != 0)
  {
  cond = st.getInt("cond");
  }
@@ -458,7 +458,7 @@
  }
  else if ((Rnd.get(100) < element[6]) && (st.getQuestItemsCount(element[4]) < element[5]))
  {
- st.giveItems(element[4], Rnd.get(element[7], element[7]));
+ st.giveItems(element[4], element[7]);
  if (cond == 3)
  {
  checkIngr(st);


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16135
I see you make other posts, but do not answer this one.
It is expected to at least check the fixes that are made for your reports.


Offline FanaticoLineage2

  • Heir
  • **
    • Posts: 13
I see you make other posts, but do not answer this one.
It is expected to at least check the fixes that are made for your reports.


The quest was fixed.