anyone know how do i edit saves? apparently they're stored in registry but editing them does nothing
The saved variables are in the registry, in HKEY_CURRENT_USER|Software|DefaultCompany|NEW CORAL CITY. Double-click on the _01_ version of the variable you want to edit. For example, _rebeccarel_01_hxxxxxxxx (where xxxxxxxx is some irrelevant random-looking number) is the player's relationship with Rebecca in save slot #1. Don't bother with the _00_ versions of the variables, they're for internal storage used by the game when changing scenes. and any changes you make will be overwritten.
Now comes the tricky part... You'll see a list of eight two digit hexidecimal numbers representing the variable. These are in some non-standard floating-point format which I won't explain unless someone asks. To change the value to 1, change the numbers to 00 00 00 00 00 00 F0 3F. To change the variable to other values use:
0 -> 00 00 00 00 00 00 00 00
1 -> 00 00 00 00 00 00 F0 3F
2 -> 00 00 00 00 00 00 00 40
3 -> 00 00 00 00 00 00 08 40
4 -> 00 00 00 00 00 00 10 40
5 -> 00 00 00 00 00 00 04 40
6 -> 00 00 00 00 00 00 18 40
7 -> 00 00 00 00 00 00 1C 40
8 -> 00 00 00 00 00 00 20 40
9 -> 00 00 00 00 00 00 22 40
10 -> 00 00 00 00 00 00 24 40
11 -> 00 00 00 00 00 00 26 40
12 -> 00 00 00 00 00 00 28 40
13 -> 00 00 00 00 00 00 2A 40
14 -> 00 00 00 00 00 00 2C 40
15 -> 00 00 00 00 00 00 2E 40
16 -> 00 00 00 00 00 00 30 40
17 -> 00 00 00 00 00 00 31 40
18 -> 00 00 00 00 00 00 32 40
...
31 -> 00 00 00 00 00 00 3F 40
32 -> 00 00 00 00 00 00 40 40
33 -> 00 00 00 00 00 80 40 40
34 -> 00 00 00 00 00 00 41 40
If you can't figure out the pattern I can probably come up with a formula.