Aksayuk

Newbie
Aug 17, 2019
86
55
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/script3.rpy", line 2242, in script
jump v6_day2_olviatalkd1b
ScriptError: could not find label 'v6_day2_olviatalkd1b'.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "game/script3.rpy", line 2242, in script
jump v6_day2_olviatalkd1b
File "C:\Users\Aksayuk\Downloads\Downloads\Savior-0.6a-pc\renpy\ast.py", line 1695, in execute
rv = renpy.game.script.lookup(target)
File "C:\Users\Aksayuk\Downloads\Downloads\Savior-0.6a-pc\renpy\script.py", line 894, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'v6_day2_olviatalkd1b'.
Windows-8-6.2.9200
Ren'Py 7.3.2.320
Savior 0.6
Mon May 24 11:41:34 2021
The path i took was i ditched Allison from the first two option to forgive her so should i have taken to path to avoid this Error,
You don't have permission to view the spoiler content. Log in or register now.

Bad_Memories_Sig.gif Radiant.gif Tara gif.gif


Edit- Forgive Allison to avoid this Error...
 
Last edited:

Aksayuk

Newbie
Aug 17, 2019
86
55
OK, sorry. That's because the file was opened by your browser rather than downloaded. You can try to right-click the link and select "Save link as..." in the context menu. (Or whatever you do in your OS and browser to download it). Save it with the name "patch.rpyc". The extension "rpyc" is especially important, while the name can be changed, e.g. "savior_patch.rpyc". Then place the file in the folder "game".
how to install?
Place the patch file into the game folder or copy and paste the file (not the link) after you download the patch file.

BM2.gif Tara gif.gif
 
Jun 30, 2018
277
123
Code:
I'm sorry, but an uncaught exception occurred.

While loading <'Image' u'images/v4/morning/5.png'>:
  File "game/script2.rpy", line 30, in script
    mc "ARGH!"
  File "renpy/common/00library.rpy", line 268, in say
    who(what, interact=interact, *args, **kwargs)
Exception: Could not load image u'images/v4/morning/5.png': error('Error reading the PNG file.',)

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "game/script2.rpy", line 30, in script
    mc "ARGH!"
  File "D:\games\Savior-0.6a-pc\renpy\ast.py", line 706, in execute
    renpy.exports.say(who, what, *args, **kwargs)
  File "D:\games\Savior-0.6a-pc\renpy\exports.py", line 1334, in say
    renpy.store.say(who, what, *args, **kwargs)
  File "renpy/common/00library.rpy", line 268, in say
    who(what, interact=interact, *args, **kwargs)
  File "D:\games\Savior-0.6a-pc\renpy\character.py", line 1139, in __call__
    self.do_display(who, what, cb_args=self.cb_args, **display_args)
  File "D:\games\Savior-0.6a-pc\renpy\character.py", line 842, in do_display
    **display_args)
  File "D:\games\Savior-0.6a-pc\renpy\character.py", line 591, in display_say
    rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
  File "D:\games\Savior-0.6a-pc\renpy\ui.py", line 295, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "D:\games\Savior-0.6a-pc\renpy\display\core.py", line 2699, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
  File "D:\games\Savior-0.6a-pc\renpy\display\core.py", line 3191, in interact_core
    self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or video_frame_drawn)
  File "D:\games\Savior-0.6a-pc\renpy\display\core.py", line 2091, in draw_screen
    renpy.config.screen_height,
  File "render.pyx", line 546, in renpy.display.render.render_screen
  File "render.pyx", line 247, in renpy.display.render.render
  File "D:\games\Savior-0.6a-pc\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 154, in renpy.display.render.render
  File "render.pyx", line 247, in renpy.display.render.render
  File "D:\games\Savior-0.6a-pc\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 154, in renpy.display.render.render
  File "render.pyx", line 247, in renpy.display.render.render
  File "D:\games\Savior-0.6a-pc\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 154, in renpy.display.render.render
  File "render.pyx", line 247, in renpy.display.render.render
  File "accelerator.pyx", line 110, in renpy.display.accelerator.transform_render
  File "render.pyx", line 247, in renpy.display.render.render
  File "D:\games\Savior-0.6a-pc\renpy\display\image.py", line 500, in render
    return wrap_render(self.target, width, height, st, at)
  File "D:\games\Savior-0.6a-pc\renpy\display\image.py", line 306, in wrap_render
    rend = render(child, w, h, st, at)
  File "render.pyx", line 154, in renpy.display.render.render
  File "render.pyx", line 247, in renpy.display.render.render
  File "D:\games\Savior-0.6a-pc\renpy\display\im.py", line 584, in render
    return cache.get(self, render=True)
  File "D:\games\Savior-0.6a-pc\renpy\display\im.py", line 266, in get
    surf = image.load()
  File "D:\games\Savior-0.6a-pc\renpy\display\im.py", line 629, in load
    surf = renpy.display.pgrender.load_image(renpy.loader.load(self.filename), self.filename)
  File "D:\games\Savior-0.6a-pc\renpy\display\pgrender.py", line 162, in load_image
    raise Exception("Could not load image {!r}: {!r}".format(filename, e))
Exception: Could not load image u'images/v4/morning/5.png': error('Error reading the PNG file.',)

Windows-7-6.1.7601-SP1
Ren'Py 7.3.2.320
Savior 0.6
Tue May 25 03:12:49 2021

can anyone help please???
 

stahalle

Engaged Member
Jul 11, 2018
2,071
3,609
just started the game for the first time. are the lewd scenes more on the "bad" route like the park scene or is it balanced?
 

Sheepy Cloud

Member
Apr 22, 2020
428
243
just started the game for the first time. are the lewd scenes more on the "bad" route like the park scene or is it balanced?
It's been a while since I last played, and I have horrible memory issues, but I think it's mostly "bad" as you put it, for the moment.
 

assman1337

Well-Known Member
Mar 10, 2018
1,426
2,027
Savior [v0.6a] [Purple Fellas] - Compressed
You like this game and want to support the developer, click on the developer name below.
Developer:

Original Win/Linux Size: 3.43 GB

Compressed Win Size: 235 MB MEGA
Compressed Mac Size: 234 MB MEGA
Compressed Linux Size: 239 MB MEGA

Compressed using YAC - Yet Another Cruncher (A Game Compactor) [V3.1b]
Quality Level: Medium
You don't have permission to view the spoiler content. Log in or register now.
This compression is unofficial which reduces image/audio/video quality and might break the game.

If you enjoy this compressed version, please click the "(y)like" to give me support.
You don't have permission to view the spoiler content. Log in or register now.
1622483521075.png mega file pc
and pixeldrain downloads fully but doesnt open on windows explorer and when opening with 7zip says file cannot open because of virus
 

Techstar

Crlazy Compressor - Retired
Modder
Donor
Compressor
Dec 31, 2017
1,286
23,316
Hi assman1337, I will check again once I reach home.
Thank for informing.

Already check using VirusTotal and here the .
It a false alarm, but if you don't feel safe about it then dun play it.
FYI even the original dev ver also being .
mega file pc and pixeldrain downloads fully but doesnt open on windows explorer and when opening with 7zip says file cannot open because of virus
 
Last edited:
  • Like
Reactions: assman1337

MausMaus

Active Member
Aug 2, 2018
719
490
Yeah that was in the earlier stages of the game, most likely 'cause the dev's didn't have the best hardware or experience in that.
I believe that they'll redo some scenes in the future when they have the hardware needed and money to do so.
Alright thank you, it was fine anyways. I kind of thought he was going to play a bigger role in the rest of the story by how he was being portrayed in the scene, so it seemed odd that he had no image. Turns out that was his only scene so meh.
 

Ruff Ryder

Member
Aug 18, 2020
440
542
Alright thank you, it was fine anyways. I kind of thought he was going to play a bigger role in the rest of the story by how he was being portrayed in the scene, so it seemed odd that he had no image. Turns out that was his only scene so meh.
Maybe he is, maybe not. We don't know.
 
3.80 star(s) 132 Votes