Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

I think there's a walking dead scenario with Aria's path.

Was stuck for the longest time with her and got only "Wait a bit before talking to Aria again." and "You have not cleared a timed event required for this event."

It seems I saw the scene "aria_storyquest3" in the evening, and it ends with

     call time_advance from _call_time_advance_41
     jump alaine_storyquest1

-> "time_advance" does not return on evenings, so the scene alaine_storyquest1 is never triggered.

a (stupid) workaround is something like

if timeofday == 3:
   jump alaine_storyquest1
else:
   call time_advance from _call_time_advance_41
   jump alaine_storyquest1

and if my report is correct you need some way to get the plot on track for players with the same b0rken path I had.

bonus: handful of typos. the line numbers are probably not exact, I decompiled your scripts


./Intro.rpy:64: commiting->committing

./Intro.rpy:843: embarassed->embarrassed

./eloise_intimacyrepeatable.rpy:1777: extravagent->extravagant

./alaine.rpy:966: fourty->forty

./eloise_intimacyrepeatable.rpy:460: futher->further

./Emi.rpy:1440: harrassed->harassed

./Emi.rpy:1565, ./girlstatsscreens.rpy:552: occurence->occurrence

./aria.rpy:339, ./aria.rpy:2379: senstive->sensitive

./Serah.rpy:1415: seperate->separate

./aria_intimacyrepeatable.rpy:1090, ./aria_intimacyrepeatable.rpy:1415: shouldnt->shouldn't

./Eloise.rpy:587: isnt->isn't

The narrator lied!!!!1!!11eleven!1

$ Smoney += 10000
Narrator "You have received $30 000 from Serah's parents."

(label lunarnewyear_2022_menu4)

noticed that the image aria_storyquest12_22 is missing, in label aria_storyquest12_menu2. and the built-in linter* found a few more

game/aria.rpy:639 'aria_storyquest7end_5' is not an image. 
game/aria.rpy:1215 'aria_storyquest12_22' is not an image. 
game/universalmenus.rpy:26 'day5eveningtvroom' is not an image. 
game/universalmenus.rpy:120 'ariadiningroom' is not an image. 
game/universalmenus.rpy:211 'day5eveningtvroom' is not an image. 
game/universalmenus.rpy:239 'serahroom_screen' is not an image. 
game/universalscreens.rpy:488 'park_night' is not an image.

*) you're aware of https://www.renpy.org/doc/html/developer_tools.html#lint ? reports more issues, icluding jumps to non-existing labels

fwiw, not only this scene.

every single scene interrupted by a "call time_advance" can trigger this issue, skipping all the remaining content of the scene as of the missing "return" on evening.

this affects e.g. most of the intro.

currently one is dropped in free-roaming after MC goes to sleep with Aria on the very first day. felt rushed but I didn't think a lot about it - shoddy writing is not unheard of in pron games :)

I got suspicious when Lia told something about a threesome with Aria, a scene I never saw. and peeking into the scripts showed the cause: I missed most of the prologue, the whole plot setting is at the moment unavailable.

-> imo game breaking, you need to rework the whole time advance system

Hey there, thanks for the report. We are aware of this issue and are working to release a bug fix as soon as possible. This stems from reworking the time_advance call to trigger events, but it is a game breaking bug!