Looks like there is a small bug, when
Truth or Dare is played with Josy & Maya; when Maya is asking the main character how many sexual partners he has had, the code does not provide for any dialogue for exactly five partners (the minimum being three).
Code:
if tmpInt >= 10:
[…]
elif tmpInt > 5:
[…]
elif tmpInt == 4:
[…]
elif tmpInt == 3:
Line 2799 should be:
And because we want the dialogues to remain coherent, line 2803 should be:
Code:
mc "Maybe one or two more, but that's about it."
This way, the script won't conflict with the official walkthrough which states: If you have been with at least 4 girls, you get + RP Josy and + RP Maya. I post the report here, because last time I did, the code was promptly corrected.