Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Nice novel for the limited time schedule.
Though there are still some pieces of the shattered forth wall laying around ;)

Ok, there is a major bug in the script which prevents any other ending than the bad one. The order of the "points" count and the scene jumps seem to be mixed up.
And after fixing it myself I have to say it's a shame to not see the other endings <3

After the 2 girls screen there is another small bug which shows the same girl twice.... nothing important.

Unfortunately, I don't think I can fix it. I tried several times and accidentally ended up deleting the whole thing. X(

I'm sorry to have locked out the endings, but the artist will post the images used in the game on his deviantart page as soon as he touches them up a little.

Okay, I understand.

For everyone interested in a fix:
Open the file "script.rpy" (not "script.rpyc") in the game sub folder in your favourite text editor. Search for "$ points += 1" and move that lines above the lines containing "jump ...". Be sure not to change any indention or other white spaces.

If your favourite text editor is Notepad++ enable regular expression in the search/replace window and use
^(\s+jump \w+\n)(\s+\$ points \+= 1\n)
in the search field and
\2\1
in the replace field. That should fix all lines :)

Hey, can you help me? I only have Notepad (dunno what Notepad++ is) and I have no idea how to fix it. I tried what you said but I keep getting errors.

(1 edit)

Ok, I try to backtrack my own steps...

- Open "game/script.rpy"

- Search for "$ points += 1"

- Switch the whole line containing "$ points += 1" with the line preceding it.

- Repeat for all "$ points += 1" lines which are preceded by a "jump ..." line.

Example:

Before:

            jump sarahpath 
            $ points += 1

After:

            $ points += 1
            jump sarahpath 


And Notepad++ is my bare minimum I use for text editing under Windows (https://notepad-plus-plus.org/)


I hope I could explain it good enough.
Akalaidum