What follows is my stream of consciousness in figuring out this attic issue. I did figure it out, but it took some editing of a .rpy file to do it. Errors exist and I think I ended up hacking my way into the next update (without any of the h-scene images). Hopefully, this settles any issues (for now) for those who were asking about the attic situation. I don't think the author intended for us to hit a wall like we did and actually just intended for us to reach the end where we thought we were stuck. [
AdmiralPanda may want to confirm this at some point.]
There are three files in the game directory that contain the word "attic":
- \game\tl\russian\dialogues\cheryl_d.rpy
- \game\script\location.rpy
- \game\archive.rpa
The first two only contain a single instance of that word - "Try to find the attic of the house."
The last one is a bit big and Notepad++ has issues searching it.
I was hoping some sort of screen would be callable through the console, but apparently, none exists.
(My current version - WiZarD-0.1.18.2-pc)
EDIT: For kicks, I searched for "office" instead. There's something here. Digging...
EDIT2: Need "f_office_key = 1" for the office to be displayed. Working out how that is accomplished.
EDIT3:
Code:
if q_cheryl == 18 and q_sis >= 45:
jump cheryl_d18
However, at this stage, q.cheryl is 16, not 18.
EDIT4:
Code:
hotspot (902, 249, 156, 327)action Jump("house_up")alt "house_up"
I assume this is the "go upstairs" area of the screen.
AHA!!
Code:
#if q_cheryl == 16:
#jump cheryl_d16
it's commented out!!
\game\script\location.rpy, line 1600
EDIT5: Uncommenting those two lines (remove the #) allows me to continue!
EDIT6: Exception happens. I imagine this is why the author chose to comment this out. Looks like h-scene stuff (Cheryl).
View attachment 1005078
Ignoring the series of exceptions (just a string of images not found), you emerge on the other side with no issues so far. < though if you go backwards, the "standard dialog images" are there - I imagine this is the special interface the author created for h-scenes.>
EDIT7: More image not found exceptions a bit later for another h-scene (Cheryl).
EDIT8: Again, more image not found exceptions for another h-scene (Cheryl).
EDIT9: I think I just hacked my way into the next update. I don't believe the author intended us to be able to access the attic just yet. The story definitely takes a neat twist. Got to 100% on Cheryl's story line:
View attachment 1005089