Also, a minor glitch:
Python:
<<link "Stare in horror at the sight before you.">>
<<ctpAdvance "firstSat15">>
<<set $tasks.delete("Figure out what happened to Lisa Patterson.")>>
<<set $passTasks.pushUnique("Figure out what happened to Lisa Patterson.")>>
<</link>>
The task is set as successfully completed when you find the body...
Python:
<<link "Digest this news as the Sheriff speaks again." "First Sunday 2">>
<<set $events.fateOfKiller to "unknown">>
<<set $events.lisaDeathInfo to "unknown">>
<<set $tasks.delete("Figure out what happened to Lisa Patterson.")>> /* Arguably failed to figure out what happened to her on time. */
<<set $failTasks.pushUnique("Figure out what happened to Lisa Patterson.")>>
<</link>>
... but then it's set as a failure during the talk with the sheriff. As a result, the same task is listed as both "Successful"
and "Failed". If it's arguably the latter, then perhaps it should be removed from the list of the former (or never put there in the first place)
edit: also, not sure if this is intentional:
Python:
<<if $events.sean gte 5>>
<p><<link "Sean steps into the room as you resume packing.">>
<<ctpAdvance "1stSun11">>
<</link>></p>
The check using
gte 5 instead of
eq 5 causes Sean to try and have sex with MC not only if the player advanced his storyline to the end, but also if they turned Sean down (because that sets the variable to 999 which is also >= 5) Although, this effect of Sean trying to be pushy at this point might be considered hot by some and more of a feature than a bug.
edit2: there's still a small glitch in the interview script:
Python:
<<if $events.amberlDate gte 2>>
<p><<link "Tell her you are dating Amber Ferguson.">>
// ...
The typo
amberlDate instead of
amberDate causes this option never to appear, even if MC is in fact dating Amber. Also, similar to the bug above:
Python:
<<if $events.sean gte 4>>
<p><<link "Tell her you are dating Sean Stewart.">>
This check means the option about dating Sean will show up even if player turned his advances down, because the value of tracking variable will be 999
edit3: one more small error, the task
Sneak into the Patterson House on Saturday with Amber and Anya. is never removed from the list of active tasks. Same for the
Figure out who the figure in my dreams is. which stays active even after MC learns Corvus' identity in the dream.