Vishal326

Member
May 15, 2022
175
90
good cos i thought you looked for it on main menu
so question are now which episode you play
first part of my writing are for eps2 and 3
second part are for eps1,1
third part are for eps4
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

I USE THIS BUT STILL IDK WHY ITS STILL LOCKED
I MEANS I CHANGES TO FALSE TO TRUE
 

vimmers

Engaged Member
Aug 12, 2017
3,928
3,398
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

I USE THIS BUT STILL IDK WHY ITS STILL LOCKED
I MEANS I CHANGES TO FALSE TO TRUE
first of all you shall edit your file
you may not copy/paste it

but i haven't bought or downloaded the latest v10 so i don't know about DM has changed something
the file you shall edit are here FashionBusiness-EP4-v10-Extra-pc\game\Quests
 

origeee

Member
Feb 21, 2020
275
279
Assuming you play the same version as me, I suspect this is the gap in the quest/event log that I mentioned recently. If so, the solution is easy: continue playing the game until you have finished the "Queen of Hearts" photoshoot with Biff. Then go to the Shiny Hole. It will continue now. As soon as you are Queen of the Shiny Hole, the story ends in Episode 2 and continues in Episode 3.
Goddamn shiny hole ! Now hours spent on trying to complete all ep2 quests are wasted. Thank you anyway. Maybe I'll play it in the future
 
3.50 star(s) 233 Votes