I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/scripts/home.rpy", line 66, in script call
call screen nav_menu
File "game/scripts/bunker_overview.rpy", line 10, in script call
call screen bunker_overview
File "game/scripts/home.rpy", line 66, in script call
call screen nav_menu
File "game/scripts/radio.rpy", line 31, in script
call screen bunker_radio
File "renpy/common/000statements.rpy", line 569, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "renpy/common/00action_other.rpy", line 537, in __call__
rv = self.callable(*self.args, **self.kwargs)
File "game/scripts/radio.rpy", line 6, in get_checkpoint
x = renpy.music.get_pos() + renpy.random.randint(2, 5)
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "game/scripts/home.rpy", line 66, in script call
call screen nav_menu
File "game/scripts/bunker_overview.rpy", line 10, in script call
call screen bunker_overview
File "game/scripts/home.rpy", line 66, in script call
call screen nav_menu
File "game/scripts/radio.rpy", line 31, in script
call screen bunker_radio
File "renpy/ast.py", line 2015, in execute
self.call("execute")
File "renpy/ast.py", line 2003, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "renpy/statements.py", line 278, in call
return method(parsed, *args, **kwargs)
File "renpy/common/000statements.rpy", line 569, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "renpy/exports.py", line 3136, in call_screen
rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
File "renpy/ui.py", line 298, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "renpy/display/core.py", line 3325, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
File "renpy/display/core.py", line 4160, in interact_core
rv = root_widget.event(ev, x, y, 0)
File "renpy/display/layout.py", line 1102, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "renpy/display/layout.py", line 1102, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "renpy/display/layout.py", line 1102, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "renpy/display/screen.py", line 727, in event
rv = self.child.event(ev, x, y, st)
File "renpy/display/layout.py", line 1102, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "renpy/display/layout.py", line 1323, in event
rv = super(Window, self).event(ev, x, y, st)
File "renpy/display/layout.py", line 273, in event
rv = d.event(ev, x - xo, y - yo, st)
File "renpy/display/layout.py", line 1102, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "renpy/display/behavior.py", line 983, in event
return handle_click(self.clicked)
File "renpy/display/behavior.py", line 918, in handle_click
rv = run(action)
File "renpy/display/behavior.py", line 323, in run
new_rv = run(i, *args, **kwargs)
File "renpy/display/behavior.py", line 330, in run
return action(*args, **kwargs)
File "renpy/common/00action_other.rpy", line 537, in __call__
rv = self.callable(*self.args, **self.kwargs)
File "game/scripts/radio.rpy", line 6, in get_checkpoint
x = renpy.music.get_pos() + renpy.random.randint(2, 5)
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
Windows-10-10.0.19041
Ren'Py 7.4.11.2266
Desert Stalker 0.10a
Sun Jul 31 16:13:53 2022
It's been reported. For now, I think you can just unmute the volume.I noticed that I get errors whenever I turn on the radio on any of the 3 frequencies, something like
Code:I'm sorry, but an uncaught exception occurred. While running game code: File "game/scripts/home.rpy", line 66, in script call call screen nav_menu File "game/scripts/bunker_overview.rpy", line 10, in script call call screen bunker_overview File "game/scripts/home.rpy", line 66, in script call call screen nav_menu File "game/scripts/radio.rpy", line 31, in script call screen bunker_radio File "renpy/common/000statements.rpy", line 569, in execute_call_screen store._return = renpy.call_screen(name, *args, **kwargs) File "renpy/common/00action_other.rpy", line 537, in __call__ rv = self.callable(*self.args, **self.kwargs) File "game/scripts/radio.rpy", line 6, in get_checkpoint x = renpy.music.get_pos() + renpy.random.randint(2, 5) TypeError: unsupported operand type(s) for +: 'NoneType' and 'int' -- Full Traceback ------------------------------------------------------------ Full traceback: File "game/scripts/home.rpy", line 66, in script call call screen nav_menu File "game/scripts/bunker_overview.rpy", line 10, in script call call screen bunker_overview File "game/scripts/home.rpy", line 66, in script call call screen nav_menu File "game/scripts/radio.rpy", line 31, in script call screen bunker_radio File "renpy/ast.py", line 2015, in execute self.call("execute") File "renpy/ast.py", line 2003, in call return renpy.statements.call(method, parsed, *args, **kwargs) File "renpy/statements.py", line 278, in call return method(parsed, *args, **kwargs) File "renpy/common/000statements.rpy", line 569, in execute_call_screen store._return = renpy.call_screen(name, *args, **kwargs) File "renpy/exports.py", line 3136, in call_screen rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward) File "renpy/ui.py", line 298, in interact rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs) File "renpy/display/core.py", line 3325, in interact repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs) File "renpy/display/core.py", line 4160, in interact_core rv = root_widget.event(ev, x, y, 0) File "renpy/display/layout.py", line 1102, in event rv = i.event(ev, x - xo, y - yo, cst) File "renpy/display/layout.py", line 1102, in event rv = i.event(ev, x - xo, y - yo, cst) File "renpy/display/layout.py", line 1102, in event rv = i.event(ev, x - xo, y - yo, cst) File "renpy/display/screen.py", line 727, in event rv = self.child.event(ev, x, y, st) File "renpy/display/layout.py", line 1102, in event rv = i.event(ev, x - xo, y - yo, cst) File "renpy/display/layout.py", line 1323, in event rv = super(Window, self).event(ev, x, y, st) File "renpy/display/layout.py", line 273, in event rv = d.event(ev, x - xo, y - yo, st) File "renpy/display/layout.py", line 1102, in event rv = i.event(ev, x - xo, y - yo, cst) File "renpy/display/behavior.py", line 983, in event return handle_click(self.clicked) File "renpy/display/behavior.py", line 918, in handle_click rv = run(action) File "renpy/display/behavior.py", line 323, in run new_rv = run(i, *args, **kwargs) File "renpy/display/behavior.py", line 330, in run return action(*args, **kwargs) File "renpy/common/00action_other.rpy", line 537, in __call__ rv = self.callable(*self.args, **self.kwargs) File "game/scripts/radio.rpy", line 6, in get_checkpoint x = renpy.music.get_pos() + renpy.random.randint(2, 5) TypeError: unsupported operand type(s) for +: 'NoneType' and 'int' Windows-10-10.0.19041 Ren'Py 7.4.11.2266 Desert Stalker 0.10a Sun Jul 31 16:13:53 2022
Any idea?
For Breeding Queen, you need to leave the Hive Daughter with them during Part I of the Hive quest.Can anyone tell me how I get to the part of "Breeding the Queen" in Mutants and "Prisoner" in Zeta ???
I need help!!
yep, do the opposite next play.For context, I previously chose to take Mantis with me
ain she supposed be entirely awake or asleep during scene.. bugs in it the code and missing dialogue for part of asleep choiceAs much as I love Ain, her lewd scene wasn't # 1 in the episode. That award must go to the raiders sisters. That has to be one of the best in the entire game so far (right up there with my beloved Shani oasis scene). I prefer Ain to be awake during lewd scenes. Part of her appeal is how she acts during lewds so it is a little disappointing that she is mostly unconscious during her first legit full private sex to completion scene. But I get that it is just a repeatable and in the game timeline doesn't have to be played before a future full lewd scene.
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/scripts/day8.rpy", line 313, in script
pause 0.5
File "renpy/common/000statements.rpy", line 453, in execute_pause
renpy.pause(delay)
IOError: Couldn't find file 'audio/music/exploration/zone looming.mp3'.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "game/scripts/day8.rpy", line 313, in script
pause 0.5
File "renpy/ast.py", line 2015, in execute
self.call("execute")
File "renpy/ast.py", line 2003, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "renpy/statements.py", line 278, in call
return method(parsed, *args, **kwargs)
File "renpy/common/000statements.rpy", line 453, in execute_pause
renpy.pause(delay)
File "renpy/exports.py", line 1563, in pause
rv = renpy.ui.interact(mouse='pause', type='pause', roll_forward=roll_forward, pause=delay)
File "renpy/ui.py", line 298, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "renpy/display/core.py", line 3325, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
File "renpy/display/core.py", line 4025, in interact_core
renpy.audio.audio.periodic()
File "renpy/audio/audio.py", line 1162, in periodic
raise_(exc[0], exc[1], exc[2])
File "renpy/audio/audio.py", line 1140, in periodic_thread_main
periodic_pass()
File "renpy/audio/audio.py", line 1082, in periodic_pass
c.periodic()
File "renpy/audio/audio.py", line 518, in periodic
topf = load(filename)
File "renpy/audio/audio.py", line 69, in load
rv = renpy.loader.load(fn)
File "renpy/loader.py", line 798, in load
raise IOError("Couldn't find file '%s'." % name)
IOError: Couldn't find file 'audio/music/exploration/zone looming.mp3'.
Windows-10-10.0.19041
Ren'Py 7.4.11.2266
Desert Stalker 0.10a
Sun Jul 31 09:58:33 2022
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/scripts/day8.rpy", line 1695, in script
pause 1.5
File "renpy/common/000statements.rpy", line 453, in execute_pause
renpy.pause(delay)
IOError: Couldn't find file 'audio/music/exploration/zone theme short.mp3'.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "game/scripts/day8.rpy", line 1695, in script
pause 1.5
File "renpy/ast.py", line 2015, in execute
self.call("execute")
File "renpy/ast.py", line 2003, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "renpy/statements.py", line 278, in call
return method(parsed, *args, **kwargs)
File "renpy/common/000statements.rpy", line 453, in execute_pause
renpy.pause(delay)
File "renpy/exports.py", line 1563, in pause
rv = renpy.ui.interact(mouse='pause', type='pause', roll_forward=roll_forward, pause=delay)
File "renpy/ui.py", line 298, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "renpy/display/core.py", line 3325, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
File "renpy/display/core.py", line 3773, in interact_core
renpy.audio.audio.interact()
File "renpy/audio/audio.py", line 1209, in interact
periodic()
File "renpy/audio/audio.py", line 1162, in periodic
raise_(exc[0], exc[1], exc[2])
File "renpy/audio/audio.py", line 1140, in periodic_thread_main
periodic_pass()
File "renpy/audio/audio.py", line 1082, in periodic_pass
c.periodic()
File "renpy/audio/audio.py", line 518, in periodic
topf = load(filename)
File "renpy/audio/audio.py", line 69, in load
rv = renpy.loader.load(fn)
File "renpy/loader.py", line 798, in load
raise IOError("Couldn't find file '%s'." % name)
IOError: Couldn't find file 'audio/music/exploration/zone theme short.mp3'.
Windows-10-10.0.19041
Ren'Py 7.4.11.2266
Desert Stalker 0.10a
Sun Jul 31 10:03:55 2022
Is that when you're trying to load a save from 0.08 on that specific scene? The file path was changed later on, you can safely press "Ignore".Code:I'm sorry, but an uncaught exception occurred. While running game code: File "game/scripts/day8.rpy", line 313, in script pause 0.5 File "renpy/common/000statements.rpy", line 453, in execute_pause renpy.pause(delay) IOError: Couldn't find file 'audio/music/exploration/zone looming.mp3'. -- Full Traceback ------------------------------------------------------------ Full traceback: File "game/scripts/day8.rpy", line 313, in script pause 0.5 File "renpy/ast.py", line 2015, in execute self.call("execute") File "renpy/ast.py", line 2003, in call return renpy.statements.call(method, parsed, *args, **kwargs) File "renpy/statements.py", line 278, in call return method(parsed, *args, **kwargs) File "renpy/common/000statements.rpy", line 453, in execute_pause renpy.pause(delay) File "renpy/exports.py", line 1563, in pause rv = renpy.ui.interact(mouse='pause', type='pause', roll_forward=roll_forward, pause=delay) File "renpy/ui.py", line 298, in interact rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs) File "renpy/display/core.py", line 3325, in interact repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs) File "renpy/display/core.py", line 4025, in interact_core renpy.audio.audio.periodic() File "renpy/audio/audio.py", line 1162, in periodic raise_(exc[0], exc[1], exc[2]) File "renpy/audio/audio.py", line 1140, in periodic_thread_main periodic_pass() File "renpy/audio/audio.py", line 1082, in periodic_pass c.periodic() File "renpy/audio/audio.py", line 518, in periodic topf = load(filename) File "renpy/audio/audio.py", line 69, in load rv = renpy.loader.load(fn) File "renpy/loader.py", line 798, in load raise IOError("Couldn't find file '%s'." % name) IOError: Couldn't find file 'audio/music/exploration/zone looming.mp3'. Windows-10-10.0.19041 Ren'Py 7.4.11.2266 Desert Stalker 0.10a Sun Jul 31 09:58:33 2022
If I leave the Hive daughter or take them with us ,Will there be any consequence of this choice in future Hive or other missions???For Breeding Queen, you need to leave the Hive Daughter with them during Part I of the Hive quest.
For Prisoner, you need to choose the dominant choices during your interactions with the queen.