It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
So I literally can't complete the Fool On The Hill questline because despite the fact that I already scanned the Justice tarot symbol, the game pretends like I haven't scanned it, and so neither the quest logs it as collected nor does the map. I go back to the area and nothing appears anymore on the giant water tank thing.

There's no console command to fix this, there doesn't appear to be any advice anywhere on how to remedy it either.

I'm going to just assume that this is a dead-end quest now unless I restart a whole new save since I picked that tarot up several weeks ago and I'm not about to redo all of that work just because of a bug.

If anyone has a solve, it'd be appreciated.

EDIT: Fixed it myself using the console after digging through the code.
Post edited November 22, 2022 by Terralventhe
Could be useful for others to know how you did it. Which solution you used.

Did you use the console code for force-ending stuck quests?

`journalManager = Game.GetJournalManager() trackedEntry = journalManager:GetTrackedEntry() questEntry = journalManager:GetParentEntry(journalManager:GetParentEntry(trackedEntry)) questEntryHash = journalManager:GetEntryHash(questEntry) journalManager:ChangeEntryStateByHash(questEntryHash, "Succeeded", "Notify")
avatar
PaladinNO: Could be useful for others to know how you did it. Which solution you used.

Did you use the console code for force-ending stuck quests?

`journalManager = Game.GetJournalManager() trackedEntry = journalManager:GetTrackedEntry() questEntry = journalManager:GetParentEntry(journalManager:GetParentEntry(trackedEntry)) questEntryHash = journalManager:GetEntryHash(questEntry) journalManager:ChangeEntryStateByHash(questEntryHash, "Succeeded", "Notify")
No, I used the console code to change certain quest facts, specifically these two:

Game.SetDebugFact("mq033_grafitti_counter", X)
Game.SetDebugFact("mq033_current_count", X)

I had discovered 19 but only 18 of them showed up on the counter, so I simply changed the value to 19 so that when I grabbed the last one the quest completed properly.
avatar
Terralventhe: No, I used the console code to change certain quest facts, specifically these two:

Game.SetDebugFact("mq033_grafitti_counter", X)
Game.SetDebugFact("mq033_current_count", X)

I had discovered 19 but only 18 of them showed up on the counter, so I simply changed the value to 19 so that when I grabbed the last one the quest completed properly.
Interesting.

Thanks for the info, I apparently have only limited quest facts listed in my supposedly "complete" command list Excel doc.
Only mq033 listing I had was adding Misty's Dreamcatcher.

Say, where did you find that info? I've been searching for a quest facts list, but Google is being less than helpful...
Post edited November 25, 2022 by PaladinNO