- Mar 5, 2018
- 3
- 2
damn, the game just don't open on the android, it just crash every time
i mean at least they finished a game
You might wanna check the patch one last time just to make sure everything is working since the game is completedOk here's an incest patch that should work even when the game is updated as long as nothing major changes. I guess I'm now one of those "evil modder" that adds incest to games.
There're 2 bugs that I know of in the current version (v0.22) of the game but they have nothing to do with the patch:
You don't have permission to view the spoiler content. Log in or register now.
Install:
Extract and put the patch in Shelter-0.XX-win\game
DISCLAIMER: This patch is unofficial, I'm not related to anyone working on this game, I'm not even really a coder I just made the patch from what I've learned playing ren'py games and looking at their code and reading some threads on the F95 Programming, Development & Art board. It could probably be better but I tried my best.
Known Issue: For some reason at some point the dev stopped using all the different variables for the characters and just used their first name in the scene's code instead so you get the MC calling Angela by her name instead of mom, etc. I'll probably make another version later to fix those scenes but I think I'll wait after next version to see if anything breaks first.
I wouldn't fret about it if I were you. Fate of Irnia is supposedly "completed" for over a year now, and it still gets regular updates with new content, however small they are.Damn, I was hoping this game would keep on going a lot longer. Nice to see a completed tag, but they have left me wanting more.
For me too. It's obvious that the whole settlement map was "finished" if you fully upgrade it (no more space for new stuff), and the "overworld" map was mostly done as well.It feels like a logical conclusion to me. Sure, they could have extended it a few updates to add more scenes for some of the newer girls but the story has been waiting for this ending.
Thank you for this. BTW this only unlocked half of my missing images. To unlock the other half of my missing images I also had to locate this: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.
def check_unlock(self, all_prior):
"""
Returns True if the image is unlocked.
"""
for i in self.conditions:
if not i.check(all_prior):
return False
return True