- Jun 20, 2019
- 652
- 240
Well that was pretty easy to unlock the full gallery with notepad++...
If anyone is interested to know how to unlock it, write me!
If anyone is interested to know how to unlock it, write me!
Good way to satisfy your twisted desires without hurting actual people.I gotta say (and this is not a complaint, just an observation) out of all the MC's I have played as, possibly including non-porn games, this guy has to be the most despicable evil bastard there is. The things he does to completely innocent people is just sick. Not that it bothers me in particular it's just a game but damn, what an evil psycho this guy is!
Lol, fun game though.
My thought was "Not Safe for Vegans!"- Added six new NSFV images (Three scenes with variations)
Not Safe for Viewing?
sadly only twoAre they animations? The description is vague.
Been trying to find it myself, where did you manage this? Played through the game twice and still missing tons of sceens.Well that was pretty easy to unlock the full gallery with notepad++...
If anyone is interested to know how to unlock it, write me!
You must use notepad++ or anything like this application, then open this file: 00gallery.rpy (witchhunter main folder->renpy->common).Been trying to find it myself, where did you manage this? Played through the game twice and still missing tons of sceens.
Unfortunately this doesn't seem to be working for me, not too sure whyYou must use notepad++ or anything like this application, then open this file: 00gallery.rpy (witchhunter main folder->renpy->common).
You must change False to True, scroll down until you are at the line 117, change it, then save it, after this the gallery will be
unlocked next time you launch the game.
sorry I dont get what you mean by this perhaps an example for the fix of the indentation?Unfortunately this doesn't seem to be working for me, not too sure why
Edit: For anyone else that's stuck. I changed both Line 117 and Line 123 to True. Now it works for me
Edit2: Also, delete lines 588 to 591, and fix the indenting of:
for d in displayables:
add d
to be in line with the "if gallery.slideshow:"
Can't complain about that, i'd smash them too.Why on earth did he add fucking wakfu characters when we're all waiting for Will to get her content?
changing both line 117 and 123 to "return True" worked for me.sorry I dont get what you mean by this perhaps an example for the fix of the indentation?
class __GalleryButton(object):
def __init__(self, gallery, index):
self.gallery = gallery
self.images = [ ]
self.conditions = [ ]
self.index = index
def check_unlock(self):
for i in self.conditions:
if not i.check(True):
return True
for i in self.images:
if i.check_unlock(False):
return True
return True