I've just discovered this gem! That's a nice little story with an advanced AI.
However, I'm confused, I've selected Nixie during the cosplay and Suzi told me that I've rejected her and she will only be a business partner.... is that correct or some bug?
EDIT:
I've extracted the rpa file and gone through the scripts.
Indeed, the dev messed up.
4charmed.rpy end up at line 541 with only the menu tag but no option provided and 5tryonmore.rpy start with another label. While I did chose Nixie, the script set the variable persistent.rel_nixie to True and this is were it is all messed up in 5tryonmore.rpy.
The if else statement is wrongly formulated as both returns True value. Line 54 should is the culprit here. or at least the developer could have used proper variable handling. E.g.
if persistent.rel_nixie == True:
#whatever happens if variable is true
else:
#whatever happens if variable is false
or
if (persistent.rel_nixie):
#whatever happens if variable is true
elif False:
#whatever happens if variable is false
However, I'm confused, I've selected Nixie during the cosplay and Suzi told me that I've rejected her and she will only be a business partner.... is that correct or some bug?
EDIT:
I've extracted the rpa file and gone through the scripts.
Indeed, the dev messed up.
4charmed.rpy end up at line 541 with only the menu tag but no option provided and 5tryonmore.rpy start with another label. While I did chose Nixie, the script set the variable persistent.rel_nixie to True and this is were it is all messed up in 5tryonmore.rpy.
The if else statement is wrongly formulated as both returns True value. Line 54 should is the culprit here. or at least the developer could have used proper variable handling. E.g.
if persistent.rel_nixie == True:
#whatever happens if variable is true
else:
#whatever happens if variable is false
or
if (persistent.rel_nixie):
#whatever happens if variable is true
elif False:
#whatever happens if variable is false
Last edited: