Can someone help

mystic4446

New Member
Aug 5, 2025
1
0
25
so heres the thing. when i started playing i had no knowledge of anything.
during the mad cow quest, i chose to remove the armour from brint. however now, approximatley 300 days later, i was reading the wiki and found out that leaving the armour on could change "brint" to a girl. is there any way to modify the code to change brint, or do something to allow the quest to have a different result?
 

Tarnakus

Well-Known Member
Oct 31, 2020
402
174
The only way is to save edit. Either by hand - save to file and then edit that file and load. Here is instruction how to do it (just the state of quest can be different).
Save edit:
Save to file and open it with text editor.
Find array called quests (ctr+f and type quests) then count from 0 to 14. You will have either [0,1,3] or [0,1,2,3] (depends if you saw heat scene). Delete everything in between 14th brackets so you will have only []. After loading the save you should go to the quest tile and you should have "Hollow" button (after loading check quest journal you shouldn't have Mad Cow entry in completed). Quest tile: Second red tile on the left from Marefolk Village with Brint.

Beginning of quests array and how to count (I added space for better visuals on empty brackets):
"quests":[[0,1,2,3],[0,1,2,3,5,8],[ ],[ ] ...
[0,1,2,3] - 0
[0,1,2,3,5,8] - 1
[ ] - 2
[ ] - 3
etc.
Or by using browser console (right click -> inspect and then go to console) - there the commands are:
QuestManager.quests[GLOBALS.QUEST_MAD_COW].currStates - this should inspect what states you have.
QuestManager.quests[GLOBALS.QUEST_MAD_COW].currStates.pop() - this will delete last state so you do it 3 - 4 times and whole quest is reset like with save editing.
Remember to do it somewhere in starting locations not in Khor'Minos.
To see changes, I think, you need to save and reload save, but you should be able to go to starting tile even without reloading.

Ofc above will fix ONLY quest in questlog -> if you have some flag from Brint that are written in let say Khor'Minos you will still have it and if somewhere they check that flags first before Brienne - you can have a random Brint showing up.
For super detail instruction I would need your save. Just be aware I play on backers and If you play public you can't load a save from the next build - if I remember correctly that is :p