CoC2 Save Editor

WatoroX

Member
May 27, 2023
24
19
25
This might just be a fruitless endeavor, but is there any way to revert berwyn to their former companion status while still being able to access their new content?? I love his new content to death but I feel some type of way about them just secluding themselves in the tower afterwards, with Matiha or otherwise.
 

Darkpheonix

Well-Known Member
Aug 27, 2015
863
405
no not without some serious rewriting coding. not even sure if the follower content is even still in there buried.
 

Lucien

Active Member
Apr 4, 2018
29
2
Is it possible to undo quests with the editor? I accidentally saved over my backup save and want to undo the results. It was the dawnsword quest, I wanted to give the sword to Liadan so I could have the ring.
 

Tarnakus

Well-Known Member
Oct 31, 2020
401
173
Is it possible to undo quests with the editor
With save editing yes -> with save editor I don't know.
Example of doing it with browser console.
Actually, I'm blind literary one message below is also with notepad here
Just remember if there is some flag set up it will not clear it, which means wonky staff can happen later on (like someone claiming you have dawnsword when you dont).
 
  • Like
Reactions: Ilovekatz19

Crimson13

Well-Known Member
Aug 31, 2015
47
2
When I get to the level up menu I become stuck at the stat points part, I'm in the negatives for some reason and the Confirm button is greyed out no matter what I do. It seemed like it was because my stats are higher than normal (they're all 29+) but looking at them in the save editor I don't have anything higher than 16 and I don't know what else would affect them.
 

Attachments

  • CoC2_James_1100.coc2
    125 KB · Views: 1

Lostname475

Well-Known Member
Apr 3, 2023
332
258
When I get to the level up menu I become stuck at the stat points part, I'm in the negatives for some reason and the Confirm button is greyed out no matter what I do. It seemed like it was because my stats are higher than normal (they're all 29+) but looking at them in the save editor I don't have anything higher than 16 and I don't know what else would affect them.
The game knows only 3 of your stats should be at max level
 

WatoroX

Member
May 27, 2023
24
19
25
Is having Dragon Eve AND Dragoon Azzy a possibility or would that be breaking the game?
 

WatoroX

Member
May 27, 2023
24
19
25
Should be possible? Make a backup before trying
Ofc, but is it as simple as changing a 0 to a 1 or are there flags I would have to change? And like, is it something I can only do before I finish A Teatime for Dragons??
 

Attachments

  • CoC2_Velkyr_336.coc2
    102.8 KB · Views: 2

Tarnakus

Well-Known Member
Oct 31, 2020
401
173
Is having Dragon Eve AND Dragoon Azzy a possibility or would that be breaking the game?
1753806048507.png
I started from save with Dragoon Azzy and blocked Eve. If you have such save (maybe not blocked Eve is fine) -> you can add flag \"EVELYN_DRAGON\":1.
 
  • Like
Reactions: WatoroX

Tarnakus

Well-Known Member
Oct 31, 2020
401
173
Ofc, but is it as simple as changing a 0 to a 1 or are there flags I would have to change? And like, is it something I can only do before I finish A Teatime for Dragons??
It is actually EVELYN_DRAGON_TS and EVELYN_DRAGON for your save.
EVELYN_DRAGON_TS needs to be with valid timestamps for your save -> \"EVELYN_DRAGON_TS\":320 -> this gave me Eve on your save -> I didn't check beyond first time seing dragon Eve
 

Attachments

  • CoC2_Velkyr_336.coc2
    102.9 KB · Views: 2

WatoroX

Member
May 27, 2023
24
19
25
Thank you both, you've been a big help <3
 
  • Like
Reactions: Lostname475

nighsmile

Member
Feb 14, 2022
5
0
27
Hi! I was wondering how you add the key item crystalized dracian blood. I somehow missed it during the dracian quest and would prefer not to have to go back so far? Thanks :)
 

MyOldName

Well-Known Member
Sep 3, 2015
156
51
Hi! I was wondering how you add the key item crystalized dracian blood. I somehow missed it during the dracian quest and would prefer not to have to go back so far? Thanks :)
I don't know how to do it in the save editor, but if you can open the Java script console by pressing <F12> or <CTRL>+<SHIFT>+J you should be able to get it by entering pc.addKeyItem(KEYITEMS.CrystalBlood). I haven't tried it myself as I already have the blood on my playthrough and as always no responsibilities if this completely breaks your save. Create a backup in advance.
 

nighsmile

Member
Feb 14, 2022
5
0
27
I don't know how to do it in the save editor, but if you can open the Java script console by pressing <F12> or <CTRL>+<SHIFT>+J you should be able to get it by entering pc.addKeyItem(KEYITEMS.CrystalBlood). I haven't tried it myself as I already have the blood on my playthrough and as always no responsibilities if this completely breaks your save. Create a backup in advance.
Thank you! You're a star , and yes I understand ‍↕️
 

nighsmile

Member
Feb 14, 2022
5
0
27
I don't know how to do it in the save editor, but if you can open the Java script console by pressing <F12> or <CTRL>+<SHIFT>+J you should be able to get it by entering pc.addKeyItem(KEYITEMS.CrystalBlood). I haven't tried it myself as I already have the blood on my playthrough and as always no responsibilities if this completely breaks your save. Create a backup in advance.
Hmm this doesn't seem to be working as it gives me a huge error i think i may need to change the quest? I know there's a quest manager but i'm confused on how to work it?
 

Tarnakus

Well-Known Member
Oct 31, 2020
401
173
Hmm this doesn't seem to be working as it gives me a huge error i think i may need to change the quest? I know there's a quest manager but i'm confused on how to work it?
Could you provide a save? Otherwise I did already post in this thread explanation for quest manipulation for manual save editing and via console.
For example:
QuestManager.quests[GLOBALS.QUEST_DRACONIC_POWER].currStates.pop()
you can also use push() to push values to quest array.
QuestManager.quests[GLOBALS.QUEST_DRACONIC_POWER].currStates.push(0) - but this is not tested
Ofc the real thing is me getting a save and manipulating it with reverse engineering ;P

Edit: And from looking on code it seems the quest is more important than item anyway -> just maybe call to delete item will fail without it.
 

nighsmile

Member
Feb 14, 2022
5
0
27
Could you provide a save? Otherwise I did already post in this thread explanation for quest manipulation for manual save editing and via console.
For example:
QuestManager.quests[GLOBALS.QUEST_KALYSEA_OFFERINGS].currStates.pop()
you can also use push() to push values to quest array.

Ofc the real thing is me getting a save and manipulating it with reverse engineering ;P
Gotcha! I was messing around with that formatting but i ealized i know just enough to know i don't kow anything at all . This is the save file that i've been playing around with. Thank you for helping
 

Attachments

  • CoC2_Eerie_3458.coc2
    140.5 KB · Views: 1

Tarnakus

Well-Known Member
Oct 31, 2020
401
173
Gotcha! I was messing around with that formatting but i ealized i know just enough to know i don't kow anything at all . This is the save file that i've been playing around with. Thank you for helping
Yeah, I'm not sure what is happening with item but that bricks the save -> it was enough to do: QuestManager.quests[GLOBALS.QUEST_DRACONIC_POWER].currStates.push(0)
That gives you quest and is enough to talk to Viv - get her cinderleaf (funny enough bought from her) and then I also went and started Lyric transformation.
Save below is after the quest and Viv sells dragonblood, but Lyric is not touched -> one point save is from new patch if you play public i think you cannot loaded it.
 

Attachments

  • CoC2_Eerie_3461.coc2
    143.7 KB · Views: 1

nighsmile

Member
Feb 14, 2022
5
0
27
Yeah, I'm not sure what is happening with item but that bricks the save -> it was enough to do: QuestManager.quests[GLOBALS.QUEST_DRACONIC_POWER].currStates.push(0)
That gives you quest and is enough to talk to Viv - get her cinderleaf (funny enough bought from her) and then I also went and started Lyric transformation.
Save below is after the quest and Viv sells dragonblood, but Lyric is not touched -> one point save is from new patch if you play public i think you cannot loaded it.
Thank you!! Yeah i have the backer status so i'm not sure why it was being finicky but will keep an eye out