- Jan 25, 2021
- 15
- 12
i get an error with this (version 0.29), any suggestions? :Guys if you want a 100% complete gallery follow this:
Go to game folder->renpy->common -> 00gallery.rpy
Open the file using notepad and search for "if not renpy.seen_image(i):" under that line you'll see "return False". Simply change False to True and you've unlocked the entire gallery. Make sure you type True not true, the capital T matters.
Works on TFOI and I decided to give it a go here aswell.
Code:
I'm sorry, but an uncaught exception occurred.
While running game code:
File "renpy/common/00gallery.rpy", line 152, in __call__
renpy.invoke_in_new_context(self.gallery.show, self.index)
File "renpy/common/00gallery.rpy", line 484, in show
result = i.show((button, image) not in unlocked_images, image, len(b.images))
File "renpy/common/00gallery.rpy", line 104, in show
return ui.interact()
File "renpy/common/00gallery.rpy", line 588, in execute
screen _gallery:
File "renpy/common/00gallery.rpy", line 588, in execute
screen _gallery:
File "renpy/common/00gallery.rpy", line 602, in execute
if gallery.navigation:
File "renpy/common/00gallery.rpy", line 603, in execute
use gallery_navigation
File "renpy/common/00gallery.rpy", line 605, in execute
screen gallery_navigation:
File "renpy/common/00gallery.rpy", line 605, in execute
screen gallery_navigation:
File "renpy/common/00gallery.rpy", line 606, in execute
hbox:
File "renpy/common/00gallery.rpy", line 607, in execute
imagebutton auto "_theme_gallery_nav/arrow_reversed_%s.png" action gallery.Previous(unlocked=gallery.unlocked_advance)
Exception: Imagebutton does not have a idle image. (auto=u'_theme_gallery_nav/arrow_reversed_%s.png').
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "renpy/common/_layout/screen_main_menu.rpym", line 28, in script
python hide:
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\ast.py", line 914, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\python.py", line 2028, in py_exec_bytecode
exec bytecode in globals, locals
File "renpy/common/_layout/screen_main_menu.rpym", line 28, in <module>
python hide:
File "renpy/common/_layout/screen_main_menu.rpym", line 35, in _execute_python_hide
ui.interact()
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\ui.py", line 297, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 2702, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 3518, in interact_core
rv = root_widget.event(ev, x, y, 0)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\layout.py", line 998, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\transition.py", line 47, in event
return self.new_widget.event(ev, x, y, st) # E1101
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\layout.py", line 998, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\layout.py", line 998, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\screen.py", line 714, in event
rv = self.child.event(ev, x, y, st)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\layout.py", line 998, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\layout.py", line 998, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\layout.py", line 998, in event
rv = i.event(ev, x - xo, y - yo, cst)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\layout.py", line 244, in event
rv = d.event(ev, x - xo, y - yo, st)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\behavior.py", line 962, in event
return handle_click(self.clicked)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\behavior.py", line 897, in handle_click
rv = run(action)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\behavior.py", line 320, in run
return action(*args, **kwargs)
File "renpy/common/00gallery.rpy", line 152, in __call__
renpy.invoke_in_new_context(self.gallery.show, self.index)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\game.py", line 281, in invoke_in_new_context
return callable(*args, **kwargs)
File "renpy/common/00gallery.rpy", line 484, in show
result = i.show((button, image) not in unlocked_images, image, len(b.images))
File "renpy/common/00gallery.rpy", line 104, in show
return ui.interact()
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\ui.py", line 297, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 2702, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 3094, in interact_core
root_widget.visit_all(lambda i : i.per_interact())
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 541, in visit_all
d.visit_all(callback, seen)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 541, in visit_all
d.visit_all(callback, seen)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 541, in visit_all
d.visit_all(callback, seen)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 541, in visit_all
d.visit_all(callback, seen)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\screen.py", line 430, in visit_all
callback(self)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\core.py", line 3094, in <lambda>
root_widget.visit_all(lambda i : i.per_interact())
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\screen.py", line 440, in per_interact
self.update()
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\display\screen.py", line 625, in update
self.screen.function(**self.scope)
File "renpy/common/00gallery.rpy", line 588, in execute
screen _gallery:
File "renpy/common/00gallery.rpy", line 588, in execute
screen _gallery:
File "renpy/common/00gallery.rpy", line 602, in execute
if gallery.navigation:
File "renpy/common/00gallery.rpy", line 603, in execute
use gallery_navigation
File "renpy/common/00gallery.rpy", line 605, in execute
screen gallery_navigation:
File "renpy/common/00gallery.rpy", line 605, in execute
screen gallery_navigation:
File "renpy/common/00gallery.rpy", line 606, in execute
hbox:
File "renpy/common/00gallery.rpy", line 607, in execute
imagebutton auto "_theme_gallery_nav/arrow_reversed_%s.png" action gallery.Previous(unlocked=gallery.unlocked_advance)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\ui.py", line 946, in _imagebutton
idle = choice(idle, idle_image, "idle", required=True)
File "C:\Python\Python38-32\Gyunyu\Shelter-0.29-pc\Shelter-0.29-pc\renpy\ui.py", line 940, in choice
raise Exception("Imagebutton does not have a %s image. (auto=%r)." % (name, auto))
Exception: Imagebutton does not have a idle image. (auto=u'_theme_gallery_nav/arrow_reversed_%s.png').
Windows-8-6.2.9200
Ren'Py 7.3.5.606
S.h.e.l.t.e.r. - An Apocalyptic Tale 0.29
Wed May 12 18:39:34 2021