Create and Fuck your AI Slut -70% OFF
x

jestertlw

Member
Nov 23, 2019
499
1,071
214
Scenes with who?
There are soooooooooooooooooooo many posts about this throughout this thread, a simple search using the box in the upper right would answer your question. However, it's with Mary and you get AMPLE notice and option to either partake or not. AND if NTR is your thing, it's not at a point that you would be satisfied.
 

Anomander1989

New Member
Apr 2, 2020
3
2
79
guys help me i need to find my landlady after i nearly fucked her and hit head and loose my "other " me,where is she hiding ?
 

LckyPerv

Newbie
Aug 23, 2021
21
24
45
well, i unlocked each and every scene, and only found one NTR, the whole NTR routes are "under construction" according to the game, and the only "NTR" scene mary (or whatever you named the milf that lives with the mc) gets undressed by darneel (or whatever he is called) and he hints that he will plug her wet hole , then the MC gets out running before any action, which is an expected reaction to this situation irl, but damm i wanted to see it mate, maybe the author could show the scene after the mc left from the darneel (or whatever he is called) perpective.
 

JIT

Newbie
Oct 25, 2017
38
65
46
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
3.30 star(s) 406 Votes