PilotLara a small note regarding the script in this new alpha build: it seems the game is presuming that the highest
to
to ensure Perry's odds and text variants fire correctly.
edit: for this Lena's scene:
It currently doesn't show the disabled option, but it might work better to display it, so the player knows it is a possibility to patch things up, even if they don't have will point to make it happen.
Same thing for Ian's equivalent:
Even if it's more likely for Ian to have spare will point, he can still be out of them, so showing this option, even if disabled, would be a good move.
perry_emma
variable can get is 2, but it's actually possible to push it to 3 (in Ch.9, taking option You're exaggerating
when speaking with Perry) As such, it might be better to change the checksif perry_emma == 2
to
if perry_emma >= 2
to ensure Perry's odds and text variants fire correctly.
edit: for this Lena's scene:
Python:
menu:
"{image=icon_will.webp}{image=icon_ring.webp}Stop cheating and commit" if lena_will > 0:
//...
"{image=icon_broken.webp}Break up with Ian":
//...
"{image=icon_lust.webp}Continue cheating":
Same thing for Ian's equivalent:
Python:
menu:
"{image=icon_lust.webp}I want it all":
//...
"{image=icon_will.webp}This needs to stop" if ian_will > 0:
//....
"{image=icon_broken.webp}I need to break up with her":
Last edited: