- Jan 25, 2020
- 484
- 1,180
Noticed the first one last night and fixed it.A few more errors in the game script, mostly with the sex list:
* BothaddBody
andvCardCheck
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)>> // ...
Twothree 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.
Fixed #1.
I don't understand #2.
#3 - UN.CBC starts counting during University, and the only bodies we're trying to add there are new, random ones based on College choices so before College doesn't matter.
We'll look into the SexLeveling