Crell

Member
Aug 6, 2017
484
1,868
ok, my fav question, is it worth playing if I am only interested in the mom content? never played it before.
Nope, it's not. You can bang your sister, but the mom only has a minor scene, which sadly is non-consensual.
 

Leaom

Newbie
Jul 16, 2019
15
13
How can i take a picture of the "Nurse" Before i caught her hiding in bush ? do i need to trigger another event ?
Two ways to do it. One is to drink the strawberry drink from the cafeteria and head upstairs. Other is when doing the school tour and Lindsay falls you run to get the nurse instead of taking her there.
 
  • Like
Reactions: ariloxi
Mar 3, 2020
111
333
If all you need to do is to change text of "[name]",
then you don't need to use text filter for it.
Just override __str__ method of name.

Example in attachment.
Huh. I vaguely recall trying to do something like that, but running into issues where the functions I was trying to monkey-patch were nontrivially read-only. Either the backend has changed, or I'm misremembering, or both.

Assuming I don't run into any issues, I'll switch to your approach (which is admittedly much more efficient) the next time I update the script.
 

ZLZK

Member
Modder
Jul 2, 2017
298
853
Huh. I vaguely recall trying to do something like that, but running into issues where the functions I was trying to monkey-patch were nontrivially read-only. Either the backend has changed, or I'm misremembering, or both.

Assuming I don't run into any issues, I'll switch to your approach (which is admittedly much more efficient) the next time I update the script.
That's because Built-in Types methods are read-only.
To override their __str__ method you would need to make new class.

Here is a little trick to do so without defining new class:
varname = type(varname.__class__.__name__, (varname.__class__,), {'__str__': __str__})(varname)
 
3.80 star(s) 182 Votes