So, i stopped trying to figure out how to get stuff to work because the deeper i dive the more i realized it's unfinished content that has neither no beginning and/or end yet. But what i have seen i like.
I also finished Lizette's story as far as it goes and i really enjoyed it. The choice between horny or pure lover was great (i prefer the horny lover route though

)
I guess at some point the game is gonna need system to handle multiple lovers and their reaction to each other? I mean i want to marry them all at once after all.
Two more things i changed, the climax counter and a missing image:
menus.rpy
-----------
Line 697: text "Number of climaxes achieved with you: [stats_handjob]" size 30 -> text "Number of climaxes achieved with you: [stats_orgasms]" size 30
I was wondering why that number never changed on orgasms and randomly went up.
assets.rpy
-----------
There was also a missing image error displayed during model2 anal doggy sex due to missing code for the pussy juice. I did manage to copy and modify the non-anal code to add missing images, however the standard speed variant has some weird twitching. Maybe that's why it was missing.
I placed them below vaginal pussy juice images at line 44794.
And with this, the chef and pigfarmer should get a proper cleanup, rest and stat cutoff to 1000:
script.rpy
------------
Line 34538 Added them to the uniquenpc array because i didn't want to make a new one
$ generate_uniquenpc = ["blanche", "eugene", "lizette", "archibald", "jessica", "brad", "chef", "pigfarmer"]
Line 34540 Changed the the number of runs since we added 2 npcs
while sexnumber <= 7:
Line 34594 Added:
if chef_exhaust == True:
$ chef_exhaust = False
if pigfarmer_exhaust == True:
$ pigfarmer_exhaust = False
This is what i changed in the boobjob section. As i understand the level up section is basically this code that happens upon the player reaching 100 pleasure:
if boobjob_done == False:
$ locals()[sexactor + "_boobjob"] += 1
$ boobjob_done = True
Of the 8 occurances there were 7 that had blowjob_done in either or both of the variables and one case where the skillup code was run first and then the boobjob_done was checked and set to true. So i changed all occurences to match the first one that was correct. So this should also fix the blowjob not leveling up bug. I checked the boobjob_done and blowjob_done variables during testing and they seem to switch to true correctly now.
Lines 17131, 17164, 17197, 17233, 17256, 17415, 17497
$ blowjob_done = True --> $ boobjob_done = True
Lines 17231, 17254, 17413, 17495
if blowjob_done == False: --> if boobjob_done == False:
17337
$ locals()[sexactor + "_boobjob"] += 1
if blowjob_done == False:
$ blowjob_done = True
changed to
if boobjob_done == False:
$ locals()[sexactor + "_boobjob"] += 1
$ boobjob_done = True
I will update the files in the first post, and also the clothes commands because i was still missing something.
A few more things i noticed but can't figure out:
- Blanches eyes jump around on her face during deepthroat with a blowjob skill level that allows for open eyes during deepthroat. I don't have this at all locations, but i can reproduce it on the courtyard everytime.
- My chef seems to not "reset" during the night, her bodycum stays on and her stamina does not fill up again. The pigfarmer also only randomly resets instead of every night like my maids. Wait, i got it, the chef and pigfarmer are not in exhaustcleanup. Gonna check that out. and add it it above.
- The boobjob leveling is weird. It only seems to level up when reaching 100 pc_pleasure on the slow speed. Faster speed and switching down from normal speed doesn't level it up. Also leveling up Boobjob before Blowjob seems to break the Blowjob leveling. I also got this one i think, update above.