- May 11, 2021
- 60
- 64
Thanks, found the issue.Ok, so checking the script this hinges on:
Which means you need at least 300 cash on hand, have purchased the hand massage lessons, and massaged Alice's feet in the evening at least 5 times.Python:elif MoneyMaxBANKCard("nm",comm="mоneyMaхВАNК_") >= 300 and max_massage_skill == 2 and max_massage_feet_alice >= 5:
If you can open game's console check the state ofmax_massage_skill
andmax_massage_feet_alice
variables (enter these names and press enter to see their current value)
My max_massage_feet_alice was 21 and my max_massage_skill was 3.
I reset max_massage_feet_alice to 4 and max_massage_skill to 2, then the game told me to massage her feet one more time and after that the sensual massage course was available.
I think my max_massage_skill == 3 was the problem here.
I'm not sure if I messed around with these values before.
Can you let me know in what file you found this part of the script?
I looked into several script files, but could not find this part.
Thanks a lot!