Where does livrea talk about having met the pirate Maidensbane, so to unlock the latters talk options when asking if have heard about her?

Tarnakus

Well-Known Member
Oct 31, 2020
595
314
It is during the time you meet her in Hawkethorne - I think on old save (or you pass it already) the only option is to save edit.
Then Flirt and ask her story.
 

Papum

Well-Known Member
Dec 6, 2023
662
414
44
I normally do that in all my runs, yet only in one it got Maidensbane's new talk option besides no to when asking her about if the champion knows her.
So i don't really see which thing was left out.

I read all the options of dialogue, than when flirting i ask her her story first than tell mine.
 
Last edited:

Tarnakus

Well-Known Member
Oct 31, 2020
595
314
I'm sure of it. Maybe it was reworked? And bits about Maidenbaine were added when she was introduced?
1779538426269.png
 

Tarnakus

Well-Known Member
Oct 31, 2020
595
314
I used my "hackerman" skills to get old version of game and can confirm it. Flag was not there in 0.8.29. The problem was missing flag, Maidensbane was already mentioned.
0.8.29:
1779539139575.png
current backer:
1779539163366.png
 

Papum

Well-Known Member
Dec 6, 2023
662
414
44
Yeah that's why, as i started an new char in 0.8.31, and that one got the new flag checked.
Well will have to go do some changes. ^^

Thx for the clarification.


P.S. - On an other topic, i'm intending in doing an change in one of my char to revert the condition of the Kervus Warcamp towards exiled Arona so to get her Berserker set instead, any way to do this easily?
As for what i know the only things that might have to change are all the interactions and Blacksmith's New Clothes quest from within the Kervus Warcamp, the talk between the king within the KM feast with Arona (and the subsequent choise of peace or war within Kervus Warcamp), the war effort recruitment of the Orcs.
Think thats the most important ones.
 

Tarnakus

Well-Known Member
Oct 31, 2020
595
314
P.S. - On an other topic, i'm intending in doing an change in one of my char to revert the condition of the Kervus Warcamp towards exiled Arona so to get her Berserker set instead, any way to do this easily?
As for what i know the only things that might have to change are all the interactions and Blacksmith's New Clothes quest from within the Kervus Warcamp, the talk between the king within the KM feast with Arona (and the subsequent choise of peace or war within Kervus Warcamp), the war effort recruitment of the Orcs.
Think thats the most important ones.
The easiest way is flags.ARONA_BERSERKER = 1 and ignore anything else.
Then second option: flags.ORC_QUEST_CLEARED = -1 (this already gives achievement) and flags.ARONA_EXILE_TS = (Your days - 4) without Arona in party and then go to Garth. Warcamp will not be accessible anymore.
Third option: start new save file.
Fourth option: go deep cleaning: any interaction with people of the camp, change Conquest quest itself, change Arona fertility? (I think you need the camp to get her pregnant), clean any children - and I probably don't remember what else.

Code:
QuestManager.quests[GLOBALS.QUEST_BLACKSMITH_CLOTHES].currStates - this to look what staes you have.
QuestManager.quests[GLOBALS.QUEST_BLACKSMITH_CLOTHES].currStates.pop() - this is to clean the quest -> use as many times as states you have.

QuestManager.quests[GLOBALS.QUEST_RIGHT_OF_CONQUEST].currStates.pop()
QuestManager.quests[GLOBALS.QUEST_RIGHT_OF_CONQUEST].currStates.push(9) - this to change Ring of conquest state.

flags.ORC_QUEST_CLEARED = -1;
flags.ARONA_EXILE_TS = (Your days - 4); - make Arona exile and timestamp it.
flags.KM_FEAST_KELSAZ_INTRODUCE_ARONA = undefined - to unmet Mino King and Arona
flags.KM_KERVUS_OFFER = undefined maybe also
flags.ARONA_BLESSED = undefined - if you have this one.
At this point it is too much sincerely there are more branches and even fertility change to Arona it seems.

Edit - First and second method I actually checked, fourth not.
 
Last edited: