Bug - Fixed Can't Adv at Icy Peak

Alium

Member
While running loopgyou, got an error that I couldn't adv at the icy peak. Confirmed that I could adv there manually. Prop questL08Trapper was on step 5, Groar was defeated but quest not turned in. I manually turned in the quest and then the script was allowed to adv in Icy Peak.

Wiki has conflicting info on when Icy Peak opens up.

Top of this page says when quest is completed.

End of this page says it is after Groar is defeated, which matches my experience

I'll update the wiki to be consistent, but believe this is why Mafia is incorrect.

I think the fix is in KoLAdventure.java. Change the following to say Icy Peak is valid at step5 or quest finished. I know this is an easy change and I'd usually be game to fix it. But life is real busy atm.

Code:
      if (this.adventureId.equals(AdventurePool.ICY_PEAK_ID)) {
        this.isValidAdventure = QuestDatabase.isQuestFinished(Quest.TRAPPER);
        return;
      }
 
Last edited by a moderator:
Top