Hmm,
PilotLara there're some inconsistences in the update, not really odd for an alpha i guess.
* If Lena chooses to go topless, the game marks it as
and if she then puts the top back on for the photoshoot with Danny, the game "downgrades" the variable to
But subsequent checks after the photoshoot all tests simply
if v14_topless:
So they are also passed with value of 0.5, and the game is acting as if Lena is still going around topless. These tests should be for
if v14_topless == 1
instead.
* not sure if intentional, but Lena can either accept Danny's photoshop or reject it "because she doesn't feel like it", but there's no option/mention that she isn't allowed to do any work, in scenario where she's working for Seymour.
* Ivy's disguise as a human being briefly fails at this point:
(the game shows
ivy1 object which it shouldn't)
* the checks here are in wrong order:
Python:
if ian_lena_open:
v "But you're not ruling it out, huh? You've got an open relationship for a reason!"
elif ian_lena_couple and lena_cheating == 2:
v "But you're not ruling it out, huh? When has having a boyfriend stopped you? You and Mike are birds of a feather in that sense..."
elif v12_ian_lena_breakup:
v "But you're not ruling it out, huh? You're single now, after all!"
It should be checking for breakup first, otherwise (since variables like _cheating and _open are preserved when breakup happens) it causes Ivy to speak as if Lena is still in relationship with Ian and either cheating on him or in open relationship.
* after Billy's presentation, Jess gets removed from the scene along with everyone but Zarina, but she still gets some lines while invisible:
Python:
hide jessg
hide jessb
//...
if jess_bad:
js "Pretty much what I expected. But I've been filmed wearing worse, so..."
else:
$ fjess = "sad"
js "Ugh, not the styling I would've chosen at all..."
if seymour_desire:
js "Lucky for you, you don't have to wear it."
* charisma requirement for this line seems to be reversed:
Python:
menu:
"{image=icon_charisma.webp}I'm not shy" if lena_charisma < 5 or v14_zarina:
//...
l "Oh, don't worry, I'm not shy. Just curious what you've got planned for me."
Pretty sure it makes more sense for actually charismatic Lena to act bold.
* a typo in variable name causes a crash here:
Code:
While running game code:
File "game/scripts/story/chapter14b.rpy", line 12014, in <module>
NameError: name 'v14_anthiny_massage' is not defined
* this check ignores possibility Lena has used will point to avoid creampie:
Python:
elif v14_pill == False:
"I ran my fingers across my pussy, dripping with cum."
* Lena finally gets her MMF:

