A few more errors in the game script, mostly with the sex list:
* Both
addBody
and
vCardCheck
add a person to the sex list. The problem is, a number of scenes uses both of these calls, resulting in
the same person added twice:
View attachment 3570607
Code:
A four year spread of spreading led to a tally of <<print $UN.BodiesNum>>. That's in addition to my <<print $CC.HSBC>> from before.
<br><br>
<<if $bodies.length gte ($UN.CBC + $CC.HSBC)>>
// ...
Two three issues here:
#1 variable name uses wrong case, it should be
$UN.bodiesNum
because the current version doesn't exist and so it
prints as [undefined]
#2 The loop doesn't include freshly calculated
$UN.bodiesNum
in the total (it should be either added to $UN.CBC right before) As the result
the player never gets option to add any of the fresh 'bodies' from college to their sex list. As side effect, UN.CBC doesn't have correct amount of people fucked in the college.
#3
The loop also doesn't take into account that the number of fucks so far is potentially larger, because it can include people Claire slept with during the gap year and/or The Boys (or Ethan)
* a different and bit more serious issue:
[UN010 - CollegeLvls] doesn't actually seem to let you level up the sex skills, just presents you with screen of what you already have. Included a save from right before it, which also demonstrates issues described above.