CoC2 Save Editor

Papum

Well-Known Member
Dec 6, 2023
588
370
44
For item itself:
pc.safeAddItem(ITEMS.HeartOfOak);
then the flags:
flags.V_BATHS_OAK_HEART = 1;
flags.V_BATHS_TWINS_RAMIEN = 1;
flags.V_BATHS_RAMIEN = 1;
flags.RAMIEN_BATHS_COMBAT = 1;
flags.RAMIEN_TELDUUM_COMBAT = undefined;
flags.RAMIEN_VICTORY = undefined;
Reached to that point and seems maybe there is more to it, namely the letter that is adquired through being an thief or maybe slum rat background aswell.
Don't know if that has any flag attached to it as it may incriminate the prince in the involvement of contaminating the waters (that could possibly lead to a lot of diffferent things aswell, wich i'l try to see if so).

I'l attach this save where it is at the point of talking to the twins in teh bathhouse:
 

Attachments

  • CoC2_Upekkha_277.coc2
    336.1 KB · Views: 5

Tarnakus

Well-Known Member
Oct 31, 2020
576
302
Reached to that point and seems maybe there is more to it, namely the letter that is adquired through being an thief or maybe slum rat background aswell.
Don't know if that has any flag attached to it as it may incriminate the prince in the involvement of contaminating the waters (that could possibly lead to a lot of diffferent things aswell, wich i'l try to see if so).
If you want to add this letter:
pc.createKeyItem(KEYITEMS.RamiensLetter);
But doesn't seem important and I do not see any special new routes if you have it (like only slight variants). If I read this correctly you can get it either as slumrat or thief during thieft -> or if not, then you will get it after fighting him in Baths.
1776544623402.png
 
  • Like
Reactions: Papum

Papum

Well-Known Member
Dec 6, 2023
588
370
44
If you want to add this letter:
pc.createKeyItem(KEYITEMS.RamiensLetter);
But doesn't seem important and I do not see any special new routes if you have it (like only slight variants). If I read this correctly you can get it either as slumrat or thief during thieft -> or if not, then you will get it after fighting him in Baths.
Yeah, was hoping i'd screw Vrannus over with that but did not happen when i met the tauren in the tunnels with Varena.
Probably because at the KM feast i did not accuse anybody at Kasyrra, maybe if i had acussed the prince or senator who knows... .
 

David1023

Well-Known Member
Dec 28, 2023
339
260
27
So I've been editing a bunch of stuff on this file for my MC but for some reason I can't eddit my mc's cock's girth or thickness for the life of me, it just stays at 6in thick, so I was wondering if you guys on the save editor/coding, if you could maybe edit my character for me and get the girth-ness/thickness to 8in thick, I'd really appreciate it :)
 

Attachments

  • CoC2_David_244.coc2
    22.2 KB · Views: 0

David1023

Well-Known Member
Dec 28, 2023
339
260
27
After checking a few more times I don't think the cock thickness ratio feature works, can someone look into it
 

David1023

Well-Known Member
Dec 28, 2023
339
260
27
i think that ingame the girth scales directly and proportionally to your lenght.
so at first i used minoblood wine which stopped 6in in girth at 24-31in long then I tried other transformatives like twisted reed i got from the save editor to get it to 36in even Meira event where she tried to steal inches off my mc, that was able to add inches to my mc but the girth still stayed stuck at 6in, then when I went to the editor after giving my mc a knot, i had no issues changing how big or small the knot was, which made me more confused why i couldn't do anything to the thickness ratio????
 

Papum

Well-Known Member
Dec 6, 2023
588
370
44
so at first i used minoblood wine which stopped 6in in girth at 24-31in long then I tried other transformatives like twisted reed i got from the save editor to get it to 36in even Meira event where she tried to steal inches off my mc, that was able to add inches to my mc but the girth still stayed stuck at 6in, then when I went to the editor after giving my mc a knot, i had no issues changing how big or small the knot was, which made me more confused why i couldn't do anything to the thickness ratio????
As said before it probably is an ingame mechanic wich constantly refreshes so to alway's be proportional to your lenght, maybe the devs didn't want the PC to be able to go beyond certain girth volume ingame.
 

Papum

Well-Known Member
Dec 6, 2023
588
370
44
Anyone that can indicate the flag(s) to change Tarah to if as you had chosen not to be her hero/lover in her saving quest.

I have searched for tarah flags but the only one that seems to have should been something to do with it was TARAH_STATE.
But it has =1 in both saves where in one i chose to be her lover and the other i did not, as all other TARAH_* related flags don't have anything on them so i can't find to flag(s) that regulates that quest choise.
 

Tarnakus

Well-Known Member
Oct 31, 2020
576
302
Anyone that can indicate the flag(s) to change Tarah to if as you had chosen not to be her hero/lover in her saving quest.
You need to change her quest state not that TARAH_STATE flag.
You should have something like this:
1777315149998.png
QuestManager.quests[GLOBALS.QUEST_SAVING_TARAH].currStates
The state 1 means that you talk her thought with Romance, 2 there instead would be fighting and winning and 3 would be loosing to her (you need to pick one).
And what you need is this:
QuestManager.quests[GLOBALS.QUEST_SAVING_TARAH].currStates = [0,1,4,6] or
QuestManager.quests[GLOBALS.QUEST_SAVING_TARAH].currStates = [0,1,4]
if you want to see last Kavi scene
But the issue is -> I do not think she has any content when not Romanced. Even Talk is blocked.
And to be fair maybe you would need to change the TARAH_STATE variable -> but that is more about what exactly you did in that quest and is constantly overwritten (you probably have 13 or 14).