JIT

Newbie
Oct 25, 2017
38
65
Hi I noticed that people kept asking about the save location. I was interested in it as well because
You don't have permission to view the spoiler content. Log in or register now.

Anyway, as I couldn't find it in folders, I found data that looked a lot like it would be persistent savegame data. On Windows it seems it is stored as a json in the registry for some reason...

E.g. partial content (the export I did was 57+k lines long)
1639129533459.png

The registry is found here HKEY_CURRENT_USER\Software\UberPie\TaffyTales
Just search in the registry for UberPie, in my case I had one under hkey_current_user and one under hkey_users

I wrote a PowerShell script to get the value in json format instead of its hexadecimal registry value:
Code:
#POWERSHELL (I used admin because it is registry - haven't tested without admin privileges)
# windows key - note that I replaced HKEY_CURRENT_USER\ with HKCU:\
$key = "HKCU:\Software\UberPie\TaffyTales"

# replace this based on your actual value
$wholeGameStateVersion = "wholeGameStateversion 0.68.2a_h3396948242"

$output = ""



Push-Location

# set registry location
Set-Location $key


Get-Item . |
Select-Object -ExpandProperty property |
ForEach-Object {
    New-Object psobject -Property @{
        “property”=$_;
        “Value” = (Get-ItemProperty -Path . -Name $_).$_
    }
} |
# get the value we are interested in
Where-Object -Property property -eq $wholeGameStateVersion | ForEach-Object {
# the foreach is a bit redundant
    $name = $_.property
    $output = $([System.Text.Encoding]::Default.GetString($_.Value))
}

Pop-Location

$output -replace '[\x01-\x1F]' | Out-File -Encoding utf8 -FilePath "$($env:HOMEPATH)\Desktop\$name.json"

I haven't gotten the time to investigate how to put back an updated save. But as I couldn't find actual valid answers to the question "Where is my save game?", this at least answers that.
But feel free to use this knowledge as an initial step to continue on.
 
  • Like
Reactions: jebb

1xxx23

Newbie
Jun 29, 2020
30
69
Did Uber and his team clarify what new characters there will be in this remake of the first updates?

Kinda interested in that.
 

konabwo

Engaged Member
Sep 19, 2020
2,482
728
find sara-? she is in the classbut nothign happened. i trid all options.
how to skip time? dam failed to notice that arrow.
where is gym!? k. needed to spot clara near the mall .als didnot notice that buttonn inside
where to place 3rd camera...cannot find a spot in the hall. oh, two in her room
skip mini game cheat/ah it is the same as for cash
 
Last edited:

Caloi

Member
Jul 11, 2020
118
14
hey guys, i dont play yet this latest update but may i know, for this update, do we know what happen to greda yet? or its still mystery? last i played is version 0.47 something and the last thing is its show the message picture of greda like has been tortured..
 

jestertlw

Member
Nov 23, 2019
499
1,070
find sara-? she is in the classbut nothign happened. i trid all options.
how to skip time? dam failed to notice that arrow.
where is gym!? k. needed to spot clara near the mall .als didnot notice that buttonn inside
where to place 3rd camera...cannot find a spot in the hall. oh, two in her room
skip mini game cheat/ah it is the same as for cash
  1. Use search box in the upper right corner of every page of this thread for "find sara" (use the quotes)
  2. ?
  3. Profit
 

konabwo

Engaged Member
Sep 19, 2020
2,482
728
& ShaggyDhs
& araara_commander

eh. how. what to complete first so find becca would not be buggy (and i could ...interact with their house door and sara?)
for now i avoid doing sneak into showers caz after that i got this quest ( so im waiting dunno...for some sara house access and thus anything sara-becca related but not sure i am getting much... latest: had becca favours while doing clara quests )
there should be something right? caz i dunno what else i could have done in the unlikely case of replaying... which would prevent that bug.
any bugfixes?
 
Last edited:

Stil996

Conversation Conqueror
Jan 11, 2018
7,520
7,153
& ShaggyDhs
& araara_commander

eh. how. what to complete first so find becca would not be buggy (and i could ...interact with their house door and sara?)
for now i avoid doing sneak into showers caz after that i got this quest ( so im waiting dunno...for some sara house access and thus anything sara-becca related but not sure i am getting much... latest: had becca favours while doing clara quests )
there should be something right? caz i dunno what else i could have done in the unlikely case of replaying... which would prevent that bug.
any bugfixes?
?? sometimes it bugs out sometime it doesn't
it shouldn't matter which you do first, not sure what showers relates to?
if you arranged a date with becka, go meet her at the mall
  1. go to mall, discover Becca isn't there
  2. knock on Beccas door, talk to Sara, get told she is at Priscillas
  3. go to Priscillas Stables "Find Priscilla and Becca" Scene
If you follow Sara first you might not be able to complete the becka scene the same day you start it (if it is night you won't be able to enter the barn), just go to sleep and finish it the next day
 
3.30 star(s) 398 Votes