Did some minor debugging on Felicity's code to see what was tripping it up so much.
First issue: Her .json was part of the purge in the non-L patch. So I just copied the image settings for a generic blonde to bring it back to standard.
Second issue: The quest dialogue has no indication that she needs a tongue barbell or a heavy gauge naval piercing, so I just stripped that part. She'll still need something equipped, but people shouldn't have to look up a guide or check the code anymore.
Third issue: The "Exhibionist, Nymph, pervert" part of the quest randomly fails due to numerical values. I couldn't figure out exactly where it was failing in the game code itself, but changing the requirements from "STAT = 1" to "STAT > 0" lets the quest pass.
Rewrite:
Code:
IF $slave["earrings"] ! '' and $slave["collar"] ! '' and $slave["headband"] ! '' and $slave["gloves"] ! '' and $slave["nipplerings"] = 'nipple_chain' and $slave["clitring"] ! '' and $slave["boots"] ! '' and $slave["ring_left"] ! '' and $slave["ring_right"] ! '' and $slave["naval"] ! '' and $slave["tongue"] ! '':
IF slave["exhibitionism"] > 0 and slave["nymphomania"] > 0 and slave["preversion"] > 0 and slave["homosexualism"] = 1:
interaction_city = 15353
Original lines:
Code:
IF $slave["earrings"] ! '' and $slave["collar"] ! '' and $slave["headband"] ! '' and $slave["gloves"] ! '' and $slave["nipplerings"] = 'nipple_chain' and $slave["clitring"] ! '' and $slave["boots"] ! '' and $slave["ring_left"] ! '' and $slave["ring_right"] ! '' and $slave["naval"] = 'heavy_gauge_rings' and $slave["tongue"] = 'barbells':
IF slave["exhibitionism"] = 2 and slave["nymphomania"] = 1 and slave["preversion"] = 2 and slave["homosexualism"] = 1:
interaction_city = 15353