Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Akalaidum

8
Posts
1
Followers
31
Following
A member registered Aug 20, 2017

Recent community posts

Nice game so far.

Listing some issues I encountered:

  • In "Endure Anal" missing quotes a the value compare of $captor.ID
  • In "Anal finish" some syntax error: Error: cannot find a closing tag for macro <<if>><<if $player.Arousal gte 3>>…
    With a follow up error: Error: child tag <</if>> was found outside of a call to its parent macro <<if>>
    (My ma... The captor made sure to test these section quite often ;) )

Not in the itch app. The app only offers files to download with a matching platform.

An external Browser works fine. So it's no pressing issue.

Please add the supported platforms to the download files.

The itch app only downloads files with matching platform. The website works fine.

Thank you for the quick fix :)

Please add the supported platforms (Windows) to the download file.

The itch app only downloads files with matching platform. Website works fine.

(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

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 :)

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.