browser console save editing without breaking saves

Boshe

Well-Known Member
Apr 4, 2022
149
131
33
can confirm that pc.lipMod = -2 took 90 femininity champ from "juicy" and "luscious" to "nice" and "petite"
the game is now playable
 
  • Like
Reactions: morii

morii

Well-Known Member
Feb 8, 2023
81
207
can confirm that pc.lipMod = -2 took 90 femininity champ from "juicy" and "luscious" to "nice" and "petite"
the game is now playable

Welp, I didn't capitalize the M and that was the problem...thank you for making me realize this.

I'm a bit surprised other players are also interested in reducing their feminine Champ's lip size. I've learned to love my borderline thin lips through years of being bombarded with fuller lips = more beautiful, so it's nice to see someone else who prefers the smaller or small-medium look.
 
  • Like
Reactions: Rysri

Boshe

Well-Known Member
Apr 4, 2022
149
131
33
Welp, I didn't capitalize the M and that was the problem...thank you for making me realize this.

I'm a bit surprised other players are also interested in reducing their feminine Champ's lip size. I've learned to love my borderline thin lips through years of being bombarded with fuller lips = more beautiful, so it's nice to see someone else who prefers the smaller or small-medium look.
thick lips just look unnatural and unattractive to me
back to the actual reply: it shouldn't be surprising that some people would want a certain, already-present within the game aspect of their characters to be changeable in a game dedicated to transforming into every* furry thing one could mentally conceive of
*as long as it walks on two legs
 
  • Like
Reactions: morii

Ultra Chad

Well-Known Member
Aug 22, 2022
129
163
Does anyone know the console code to instantly have an NPC give birth? I want to impregnate Arona but I can't until Ragnild, Hretha, or Infrith has given birth but the problem is I'm doing a slow pregnancy playthrough. I just want to get Arona pregnant without waiting 8 months.
 

MyOldName

Well-Known Member
Sep 3, 2015
164
58
Does anyone know the console code to instantly have an NPC give birth? I want to impregnate Arona but I can't until Ragnild, Hretha, or Infrith has given birth but the problem is I'm doing a slow pregnancy playthrough. I just want to get Arona pregnant without waiting 8 months.
flags.<npc>_PREG_TIMER = <minutes>
where <npc> is the NPC you want to advance the pregnancy for and <minutes> is the number of minutes you want to advance the pregnancy to.
 
Last edited:
  • Like
Reactions: Ultra Chad

Boshe

Well-Known Member
Apr 4, 2022
149
131
33
Does anyone know the console code to instantly have an NPC give birth? I want to impregnate Arona but I can't until Ragnild, Hretha, or Infrith has given birth but the problem is I'm doing a slow pregnancy playthrough. I just want to get Arona pregnant without waiting 8 months.
you can use AronaPregPrompt() to get her to ask to go to Hretha, but I'm not sure what will happen if/when that scene would trigger naturally
 
  • Like
Reactions: Ultra Chad

Renurb

Well-Known Member
Nov 7, 2023
71
18
add perks with code: "pc.createPerk" so to get Arcane Attunement use pc.createPerk(PERKS.ArcaneAttunement)
for a list of perks type "perks" in console.

/snip
It's been a year but I was messing around with the new Captain's Evasion perk ( pc.createPerk(PERKS.CaptainsEvasion) ) and it gives me
"Even the most hard-struck of blows are instinctually dodged, twisted away, or otherwise reduced in effectiveness. All damage is reduced by undefined%."
Which I attribute to the fact that the percentage of the perk's effect depends on if Normal or Dark playthrough is selected. How could this be entered properly? I'd do it myself but since I can't find any github files to reference perk values (like there are for CoC1 or TiTS) there's little to work with.

EDIT: Nevermind I just realized Console is being its usual trick-self. Doing pc.createPerk(PERKS.CaptainsEvasion,20,0,0,0) creates the perk with appropriate percentage of 20%, and it's flexible too. Sorry for bothering you all.
 
Last edited:
  • Like
Reactions: MyOldName

gemini7197

New Member
Oct 9, 2024
2
1
33
This is a marvalous post and thanks for sharing.
And let me share something too. Well I find we can use order 'flags.xxxxx = number' to change the game flag. So, after some trying I find these following.
flags.ARONA_SUBMISSION = 100 flags.ARONA_SUBMISSION = -100 could change Arona's situation to SUB or DOM
Not enough right?
flags.KQ_OLIVIA = 1 flags.KQ_OLIVIA_TASK = 2 Let Olivia come to our wayfort.
Still not enough? dont worry. :)з)∠)
flags.KQ_EPILOGUE = 4 transform Asgeir to Asynja. So do Corrupt Lupines you know what am I saying right? XD
flags.KQ_EPILOGUE = 2 throw Asgeir to your dungeon
flags.KQ_EPILOGUE = 1 just recruit Asgeir
These order makes Asynja and Olivia exist simultaneously.
 
  • Like
Reactions: Renurb

Renurb

Well-Known Member
Nov 7, 2023
71
18
This is a marvalous post and thanks for sharing.
And let me share something too. Well I find we can use order 'flags.xxxxx = number' to change the game flag. So, after some trying I find these following.
flags.ARONA_SUBMISSION = 100 flags.ARONA_SUBMISSION = -100 could change Arona's situation to SUB or DOM
Not enough right?
flags.KQ_OLIVIA = 1 flags.KQ_OLIVIA_TASK = 2 Let Olivia come to our wayfort.
Still not enough? dont worry. :)з)∠)
flags.KQ_EPILOGUE = 4 transform Asgeir to Asynja. So do Corrupt Lupines you know what am I saying right? XD
flags.KQ_EPILOGUE = 2 throw Asgeir to your dungeon
flags.KQ_EPILOGUE = 1 just recruit Asgeir
These order makes Asynja and Olivia exist simultaneously.
Hold on. Rewind for me, do we insert ALL of these flags (Epilogues 4,2,1 and Olivia 1,2) or only specific ones? Because otherwise this feels like it should break the game with how contradictory it is.
 

Tarnakus

Well-Known Member
Oct 31, 2020
479
254
Hold on. Rewind for me, do we insert ALL of these flags (Epilogues 4,2,1 and Olivia 1,2) or only specific ones? Because otherwise this feels like it should break the game with how contradictory it is.
Every command use overwrites the previous value. You can insert all of them just the last ones will stick. But having Olivia and Asynja together is not breaking the game, beyond that Olivia still talks as if Asgeir is there. IMO the previous guy use word "order" as "command" -> not "you do it them in order"
 

Azrael1

Well-Known Member
Mar 30, 2022
183
29
29
This is a marvalous post and thanks for sharing.
And let me share something too. Well I find we can use order 'flags.xxxxx = number' to change the game flag. So, after some trying I find these following.
flags.ARONA_SUBMISSION = 100 flags.ARONA_SUBMISSION = -100 could change Arona's situation to SUB or DOM
Not enough right?
flags.KQ_OLIVIA = 1 flags.KQ_OLIVIA_TASK = 2 Let Olivia come to our wayfort.
Still not enough? dont worry. :)з)∠)
flags.KQ_EPILOGUE = 4 transform Asgeir to Asynja. So do Corrupt Lupines you know what am I saying right? XD
flags.KQ_EPILOGUE = 2 throw Asgeir to your dungeon
flags.KQ_EPILOGUE = 1 just recruit Asgeir
These order makes Asynja and Olivia exist simultaneously.
Is there any screenshots on how to do this? I have never done this before and I can't seem to find the flags for Olivia. All I am finding regarding her is in wayfort section. So any help would be appreciated.
 

Tarnakus

Well-Known Member
Oct 31, 2020
479
254
Is there any screenshots on how to do this? I have never done this before and I can't seem to find the flags for Olivia. All I am finding regarding her is in wayfort section. So any help would be appreciated.
You would need to describe your current save state. Personally I did Olivia from quest and then I did epilogue flag for changing the lupines state. This commands work in-browser console (CTRL+Shift+i). As you can't find it -> are you trying to save edit via notepad? That is the only reason I can think of why you can't find them. As in save file there are only flags which you actually manage to activate in game, via console all are autocompleted. Like this:
1761927293636.png
 

Azrael1

Well-Known Member
Mar 30, 2022
183
29
29
You would need to describe your current save state. Personally I did Olivia from quest and then I did epilogue flag for changing the lupines state. This commands work in-browser console (CTRL+Shift+i). As you can't find it -> are you trying to save edit via notepad? That is the only reason I can think of why you can't find them. As in save file there are only flags which you actually manage to activate in game, via console all are autocompleted. Like this:
I did the route of the quest where you change the lupines female. I am also trying to save edit via the in-browser console, the problem is I just can't seem to find the flags for Olivia.
 

Tarnakus

Well-Known Member
Oct 31, 2020
479
254
Ok - then define "I can't find" -> previous guy specified flags and values -> if you use console it autocompletes the flags -> there is nothing to be find at this point.
1761932617177.png
 

Tarnakus

Well-Known Member
Oct 31, 2020
479
254
So you do not want just to save edit :gedstare:. You want to check out code and you don't know how to do content file search on folder? Also it is obvious it is in Wayfort.
 

Azrael1

Well-Known Member
Mar 30, 2022
183
29
29
So you do not want just to save edit :gedstare:. You want to check out code and you don't know how to do content file search on folder? Also it is obvious it is in Wayfort.
I don't know where the flags for Olivia are, the only place where I can find anything with Olivia's name in the sources section in the wayfort file. I don't see anything saying flags.KQ_OLIVIA
 

Azrael1

Well-Known Member
Mar 30, 2022
183
29
29
I don't know where the flags for Olivia are, the only place where I can find anything with Olivia's name in the sources section in the wayfort file. I don't see anything saying flags.KQ_OLIVIA
Never mind I figured out what you meant, sorry about that. I have to ask quickly once I have typed up and entered the flags for Olivia, is there anything I need to do to find Olivia or will she just appear at the wayfort?
 

Tarnakus

Well-Known Member
Oct 31, 2020
479
254
KQ_OLIVIA - this flag only means you met Olivia in Knot quest -> as far as i see it is not important for her in Wayfort.
She should show up on the same tile as Zhara is. As long as KQ_OLIVIA_TASK is 2 and KQ_EPILOGUE has a value (which it should have in your case). Additionally there are couple events before hers (potentially). So visit that tile couple of times (if her intro doesnt fire up on first go).
 
Last edited:

Azrael1

Well-Known Member
Mar 30, 2022
183
29
29
KQ_OLIVIA - this flag only means you met Olivia in Knot quest -> as far as i see it is not important for her in Wayfort.
She should show up on the same tile as Zhara is. As long as KQ_OLIVIA_TASK is 2 and KQ_EPILOGUE has a value (which it should have in your case). Additionally there are couple events before hers (potentially). So visit that tile couple of times (if her intro doesnt fire up on first go).
Cheers, I managed to get her to spawn at the wayfort. One last thing, in a previous quest I missed an item called the Horn of the Tides. Do you know the save edit to get it?
 

Tarnakus

Well-Known Member
Oct 31, 2020
479
254
Cheers, I managed to get her to spawn at the wayfort. One last thing, in a previous quest I missed an item called the Horn of the Tides. Do you know the save edit to get it?
pc.createKeyItem(KEYITEMS.HornOfTides) - it makes you have the item -> I'm not sure if that will not give you conflicts now or in the future :p
1761946066686.png