Kaitonic

Newbie
Aug 31, 2016
22
3
Can we have a compressed version of it, thanks.
I hope there is someone that can compressed it for us here.
 

ehesse

Newbie
Jan 6, 2018
65
17
The old saves or new start give this often:
While running game code:
File "game/story/map/Street_A/myhome.rpy", line 9179, in script
" "
File "game/story/story_tool.rpy", line 15451, in execute
screen story_tool_place_house_kitchen_eat_movie_br_5:
File "game/story/story_tool.rpy", line 15451, in execute
screen story_tool_place_house_kitchen_eat_movie_br_5:
File "game/story/story_tool.rpy", line 15452, in execute
frame:
File "game/story/story_tool.rpy", line 15456, in execute
add Movie(size=(1420, 798), channel="movie", play="images/story_tool/place/house/kitchen/eat/movie/br/5.webm")
File "game/story/story_tool.rpy", line 15456, in <module>
add Movie(size=(1420, 798), channel="movie", play="images/story_tool/place/house/kitchen/eat/movie/br/5.webm")
Exception: Can't register channel outside of init phase.
 

urbanvoid

Member
Jun 26, 2018
130
94
oh great now you have to clock in and out at work and also eat all the time, just what i wanted.

Combined with the horrible laggy interface and i think i might be done with this.
 
  • Like
Reactions: jinglejang51

Wick_master

Member
Game Developer
Mar 4, 2021
112
44
The old saves or new start give this often:
While running game code:
File "game/story/map/Street_A/myhome.rpy", line 9179, in script
" "
File "game/story/story_tool.rpy", line 15451, in execute
screen story_tool_place_house_kitchen_eat_movie_br_5:
File "game/story/story_tool.rpy", line 15451, in execute
screen story_tool_place_house_kitchen_eat_movie_br_5:
File "game/story/story_tool.rpy", line 15452, in execute
frame:
File "game/story/story_tool.rpy", line 15456, in execute
add Movie(size=(1420, 798), channel="movie", play="images/story_tool/place/house/kitchen/eat/movie/br/5.webm")
File "game/story/story_tool.rpy", line 15456, in <module>
add Movie(size=(1420, 798), channel="movie", play="images/story_tool/place/house/kitchen/eat/movie/br/5.webm")
Exception: Can't register channel outside of init phase.
You are missing other update files, before last version.
 

MontyX

Newbie
Nov 11, 2017
19
15
in v1.8 cannot load any saves, cuz always starting with the new features intro. This is impossible to play in this way.
 

mookee

New Member
May 19, 2017
9
7
You are missing other update files, before last version.
Its not missing update. Happened to me every time it tried to play videos. I found the fix for it in "audio.py" file, at line 847. First time i ever looked at renpy code. No idea how it should be, but now that i changed it, its working for me. Videos are played normally now.

changed this:
if not renpy.game.context().init_phase and (" " not in name):

to this:
if not renpy.game.context().init_phase and ("" not in name):
 

Taifling51

New Member
Apr 20, 2020
11
17
Intellect and strength raised to 99, it doesn’t rise further, and for the event you need 100. Tell me how to fix this, otherwise I scrolled through 35 pages of the forum on the game and there one person asked and was ignored.
 

fdpdelamode

New Member
Mar 21, 2022
11
9


How to meet with Ms. Jackson for the 2nd "battle" mini-game?
I've spoken to the aunt (Cherry in Dale street) every day from Monday to Sunday in every possible room (or maybe I missed a possible moment, idk.. this sandbox grind is tiring...). And she has not spoken about anything except the regular dialogs (she did talk about "old women" the first time after I talked with Eve, but now she's just a parrot).
Now I'm basically stuck in the game and can't progress with any other character. I couldn't find what is the RenPy variable used to skip this "Company Event #28" either... Please guys, could you help me?


EDIT:
Ok, never mind. I've managed to find what needed to be done... Basically, what the hint "You'd want to talk to your aunt first" means is:
You need to have finished the Mysterious event #3 and the Aunt event #16
(otherwise we're stuck in a loop with the Company event #28 lol)

bloody sandbox games and their super vague hints ;P
 
Last edited:

bubba123438

New Member
Mar 2, 2018
6
2
Its not missing update. Happened to me every time it tried to play videos. I found the fix for it in "audio.py" file, at line 847. First time i ever looked at renpy code. No idea how it should be, but now that i changed it, its working for me. Videos are played normally now.

changed this:
if not renpy.game.context().init_phase and (" " not in name):

to this:
if not renpy.game.context().init_phase and ("" not in name):
Thanks for the fix, it was driving me nuts
 
2.10 star(s) 29 Votes