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 2764716
there are changes from eps4 v5
it shall looks like this
def get_achievement(achLabel):
if (persistent.achievements.has_key(achLabel) 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