Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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