Hi! How can I unlock the full gallery? (or full save ep2) there are still scenes that I do not know how to get
in
FashionBusiness-EP2-v16-Extra-pc\game\Quests
and the other 3 episodes
find the file Achievements.rpy
open it with a text editor like notepad or notepad++
in the last line change false to True
this is much easier than installing those gallery mods you can find here
and gallery are ingame in left upper corner and looks like a diploma
this is for eps1,1 and shall be extracted in the game folder
and only for vers 1,1
use extract here
not extract to
View attachment Quests.rar
there are changes from eps4 v5
it shall looks like this
def check_achievement(str):
if str in achievements_labels:
achLabel = achievements_labels[str]
if (achLabel in persistent.achievements) == False:
persistent.achievements[achLabel] = True
# renpy.save_persistent()
print "Achievement reached!"
return True
return True
def get_achievement(achLabel):
if (achLabel in persistent.achievements and persistent.achievements[achLabel] == True) or debugMode == True:
return True
return True
def check_shake_achievement(video_filename):
shake_img = re.search(r'shake\_(\d+)', video_filename)
if shake_img != None:
check_achievement("img_" + shake_img.group(1))
return True