sorry but Someone can put the full save file of episode 3 Which opened the gallery completely
Just edit the achievements.rpy in the game/quests folder.
def check_achievement(str):
if achievements_labels.has_key(str):
achLabel = achievements_labels[str]
if persistent.achievements.has_key(achLabel) == False:
persistent.achievements[achLabel] = True
# renpy.save_persistent()
print "Achievement reached!"
return True
return
False
def get_achievement(achLabel):
if persistent.achievements.has_key(achLabel) and persistent.achievements[achLabel] == True:
return True
return
False
Change the two False (in bold and underlined) to True.
Just load any save and you should have the ingame gallery unlocked.