I’m currently trying to figure out how to actually continue the story. As far as I can tell, finishing to the end of v0.45 still switches you back into the "normal" world, which locks you out of any potential sex world progression by virtue of not actually being in the sex world… Following the dialogue ("explore and fuck") does nothing because, again, no sex world. Following the phone hint ("meet mom in the evening") also does nothing.
Now that it is fully released, someone will probably leak it quickly. For the time being:
cheat code: hadesverse
Adventerous people could also try my "start_naming.rpy" file here:
https://f95zone.to/threads/a-town-uncovered-v0-45-alpha-geeseki.1433/post-10780990
Alpha 0.46a - The Second Visit Update
+Main Story Progression (24+ chapters)
+Added sprite work for all previous main story scenes
-Lots of Temp CG Assets (Focusing on writing and completing the main story)
Alpha 0.45 & 0.46a combined
- +437,500 Words
- +Main Story Progression (24+ chapters)
- +Added Sex Attire for MC
- +Added Sex Attire for Missus
- +Added Sex Attire for Effie
- +Added sprite work for all previous main story scenes
- +Added sprite work for Luna’s throwaway dialogue
- +Added some triggers to some events for the time travel feature
- +Added noses to MC and Jane during household dinner scene
- +Added Drunk Girl character sprite
- +Updated Mall stores button with final asset
- +Updated Office Elevator location asset
- +Updated Investigation Scene with Violette so MC is nude
- +Updated MC assets when meeting Jacob behind Beach rocks
- +Fixed Drunk Girl character dialogue code
- +Fixed Edward not leaving scene when discussing cameras
- +Fixed Main Story triggers when loading a preset save
- +Removed Edward’s sprite from Office scene
- -Lots of Temp CG Assets (Focusing on writing and completing the main story)
----------
Edit:
I think I’ve figured out the issue:
The "insexworld" script wasn’t updated. It still told the game that the MC was in the normal world. I changed the script to this as a temp fix and now the new content triggers:
label lbl_in_sex_world:
if main_story <= 22:
$ insexworld = 0
elif 23 <= main_story <= 35:
$ insexworld = 1
elif 36 <= main_story <= 132:
$ insexworld = 0
elif 133 <= main_story <= 140:
$ insexworld = 1
elif main_story >= 141:
$ insexworld = 0
This file is located in the game/datasets/ folder after decompiling the game with unren.
Issue: This just tells the game you’re in the sex world the whole time after that point. Based on the phone hints, you are supposed to switch back at some point, so the game will probably break at that point.
Edit2: It worked better than expected. Detention didn’t work either of the times. I’ve adjusted the script above to only go to 140. That might fix it.