ThisIsZodiac

Newbie
Apr 10, 2020
95
55
The only presentation at the Le Grande in ep 2 with Biff is in the first week of ep2. For that just follow the event list which will tell you to talk to Biff in the evening at Monica's office on Friday.
The next "presentation" with Biff at the Le Grand doesn't happen until ep 3.
yes ! you are totally correct, my to do list is bugged so i was looking at some YT walkthrough and thought it's in episode 2.
 
  • Like
Reactions: EraRamp

vimmers

Engaged Member
Aug 12, 2017
3,911
3,381
I deleted zip file, I never keep original archives in order to save space on my PC.
I don't know if they translate between copies of the game, but here's the one I have.
there being more and more text for each version there being made
so fakeid.another need the correct file
he just wrote eps4 but we also need which version he play
aka 4,2 or 4,8
 

Kbm0004

Newbie
May 2, 2020
83
51
init python:
if persistent.achievements is None:
persistent.achievements = {}

def check_achievement(ach_key):
if ach_key in achievements_labels:
ach_label = achievements_labels[ach_key]
if ach_label not in persistent.achievements:
persistent.achievements[ach_label] = True
# renpy.save_persistent()
print("Achievement reached!")
return True
return True

def get_achievement(ach_label):
if ach_label in persistent.achievements and persistent.achievements[ach_label]:
return True
if debugMode:
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

This doesn't work for gallery, any help?
EP-4 v8.00
 

vimmers

Engaged Member
Aug 12, 2017
3,911
3,381
This doesn't work for gallery, any help?
EP-4 v8.00
let me check i need to dl the game first
but remember that the gallery are ingame not in menu

they works
but your copy/paste are wrong
as i wrote there edit the lines

before
You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:
  • Like
  • Heart
Reactions: EraRamp and Kbm0004

agn25

Well-Known Member
Nov 20, 2017
1,225
2,834
Does anyone have a save of the game where you live at Julia's?
I currently have the current EP4-v8.00
You wont find a save of Monica living at Julia's in ep4. Julia lives with Monica at her old mansion or Monica cut off the relationship. You will need to have ep2 or ep3 for content at Julia's house with Monica.
 

fakeid.another

New Member
May 22, 2021
7
14
init python:
if persistent.achievements is None:
persistent.achievements = {}

def check_achievement(ach_key):
if ach_key in achievements_labels:
ach_label = achievements_labels[ach_key]
if ach_label not in persistent.achievements:
persistent.achievements[ach_label] = True
# renpy.save_persistent()
print("Achievement reached!")
return True
return True

def get_achievement(ach_label):
if ach_label in persistent.achievements and persistent.achievements[ach_label]:
return True
if debugMode:
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

This doesn't work for gallery, any help?
EP-4 v8.00
Probably someone will find this useful - the code above doesnt add something like "Gallery Viewer" in the Main Menu, it just unlocks "achievements" which can be viewed from the in-game menu:
"To view them, start or load a game and click the medal icon on the top left of the screen, just under the objectives. All of them should be unlocked. "
 
3.50 star(s) 233 Votes