Is this mod compatible with latest version?
Like said in OP, and many other times in this thread, the mod is compatible with the future changes, so it is already ready for 1.75. Perhaps that there's addition to the version 1.75 that aren't yet take in count, but I doubt that there were really a change preventing the mod to works with it.
As for "when the said potential addition will be added", well, I'm not at home today, so I don' know. I'll try to publish the update during the night, but it will all depend at what time I come home.
Edit: Oh, and I forgot,
javier_himura , I looked at the problem with Ms. Simpson. In fact the bug is not where you thought, and way more annoying. For this character, Mr.C increase
sex_of_sim
before testing if there's another level of corruption :
script.rpy:label school2
Code:
"Use a potion":
[...]
$ potion = potion -1
$ sex_of_sim = sex_of_sim +15
if 30 < sex_of_sim and level_of_sim == 0:
[...]
$ level_of_sim += 1
elif 70 < sex_of_sim and level_of_sim == 1:
[...]
$ level_of_sim += 1
elif 110 < sex_of_sim and level_of_sim == 2:
[...]
$ level_of_sim += 1
jump night
[...]
jump ent_choice
Therefore, unlike for the other characters, you can give her as many potion as you want, and increase her corruption without effectively raising the level of this corruption.
I corrected this (and cross my finger to not forget about this when he'll finally add a level of corruption), and also added a small correction to restore her corruption to the expected value for those who, like you (and in fact also me) fell in this trap.