p3ki

Newbie
Sep 11, 2018
41
11
196
How can i reread the riddle from the shipping location? Or what is the solution, because it doesn't put it into the log.
Had the same problem, but just stumbled upon the solution. On the main map, to the right of the eggs and below the Hot Springs, there's a spot you can stay still, the place will have question marks, just click there.
 

Marcymarc

Newbie
Sep 1, 2019
32
92
159
I'm stuck when I have to find river after the cemetary, looked everywhere but can't seems to find her
 

brony_uraj

New Member
May 22, 2020
9
35
47
Just replace GameAssembly.dll, it should work for now.
As an addition to my post, here’s how to edit the saves on Windows.
TL;DR
  • It’s just JSON with a simple XOR (key 152).
  • Files live in %USERPROFILE%\AppData\LocalLow\CherryBlossomGames\DragonSleuthBrittany.
  • Decrypt → edit JSON → re‑encrypt.
Before You Start
  • Close the game.
  • Back up the save folder.
  • Use a editor for json files.
Where The Files Live
  • Path: %USERPROFILE%\AppData\LocalLow\CherryBlossomGames\DragonSleuthBrittany
  • You’ll see: GameData1.dat, PlayerData1.dat, Collectables1.dat, Achievements1.dat.
Decrypt .dat → .json
Open PowerShell and run this one‑liner (creates .json next to each .dat):
$k=152;$enc=[Text.UTF8Encoding]::new($false);Get-ChildItem "$env:USERPROFILE\AppData\LocalLow\CherryBlossomGames\DragonSleuthBrittany" -Filter *.dat | %{$t=[IO.File]::ReadAllText($_.FullName,$enc);$d=(-join ($t.ToCharArray()|%{[char]([int]$_ -bxor $k)})); [IO.File]::WriteAllText([IO.Path]::ChangeExtension($_.FullName,'.json'),$d,$enc)}
Edit The JSON
  • Open the new .json files, tweak what you want.
  • Keep valid JSON:
    • Strings in quotes, booleans true/false, numbers unquoted.
    • No trailing commas.
  • Save as UTF‑8 (no BOM).
Re‑encrypt .json → .dat
Run this one‑liner (rebuilds .dat next to each .json):
$k=152;$enc=[Text.UTF8Encoding]::new($false);Get-ChildItem "$env:USERPROFILE\AppData\LocalLow\CherryBlossomGames\DragonSleuthBrittany" -Filter *.json | %{$t=[IO.File]::ReadAllText($_.FullName,$enc);if($t.Length -gt 0 -and $t[0] -eq [char]0xFEFF){$t=$t.Substring(1)}; $e=(-join ($t.ToCharArray()|%{[char]([int]$_ -bxor $k)})); [IO.File]::WriteAllText([IO.Path]::ChangeExtension($_.FullName,'.dat'),$e,$enc)}

The developer clearly used this
 

lebowskywalker

New Member
Dec 13, 2017
3
0
77
Anyone knows where to find the purple flower for vincent?

I can do the wrestling, but it doesn't seems to help me to enter the temple against the 2 brothers.
 

Varisha

Zoomer
Donor
Jun 6, 2017
352
1,089
302
guys im stucked, "find trixie or dixie" idk how to complete, i made all quests this is the last one (for my actual progress)
 

limesseur

Active Member
Oct 7, 2019
594
530
258
I can do the wrestling, but it doesn't seems to help me to enter the temple against the 2 brothers.
It doesn't tell you, but it used to mention in an older version that you needed 3 wins, so I would say to try that.

The way I did it was get Vincent to talk to the wrestling lady two times, one of those times being after you get the flowers. Then I did the three fights and talked to Vincent again and saw the scene of him and wrestling lady. Then I was able to enter.
 
4.20 star(s) 16 Votes