- Aug 8, 2017
- 822
- 1,286
Alright, to everyone that's watching this thread. I'm testing v1.9beta of the cheat injector and I noticed that the characters clean off their cum before they leave a room IF their clothes was changed. As some of you might know, I've made it so that they won't clean off the cum on them IF they've agreed to wear your cum 10 or more times. However:
Now, this is interesting. What this says is:
"If the character has cum on them, and if they're not wearing cum, clean the cum off. But ALSO, if the character is in a public place AND they're not an exhibitionist"
I'm pretty sure this segment of code is new.
The question I have now is, should I apply the same condition here as I did before where they won't clean off the cum if they've agreed to wear it for 10 times. OR, should I let sleeping dog lies and see where RonChon takes up in terms of exhibitionism?
Code:
if C in all_Companions:
clean = False
if any(C.spunk[location] for location in C.spunk):
if not C.check_traits("wearing_cum"):
clean = True
elif C.destination in public_locations and not C.check_traits("exhibitionist"):
clean = True
if clean:
if renpy.showing(f"{C.tag}_sprite") and not instant and not black_screen:
clean_cum(C)
else:
for location in C.spunk:
C.spunk[location] = 0
"If the character has cum on them, and if they're not wearing cum, clean the cum off. But ALSO, if the character is in a public place AND they're not an exhibitionist"
I'm pretty sure this segment of code is new.
The question I have now is, should I apply the same condition here as I did before where they won't clean off the cum if they've agreed to wear it for 10 times. OR, should I let sleeping dog lies and see where RonChon takes up in terms of exhibitionism?