Mod Unity [Secret Flasher Manaka] NPC Mod Behavior 1.1.3

Mishun

Active Member
Jan 27, 2018
757
251
168
I don't think it's supposed to go above 1, those numbers. They determine probability, which is between 0 and 1.

Try setting it on 1 instead.
worked, another question: do you know how to reset spawns? not ratio but spawns, npc's don't spawn anymore, move to different location? or just home? spawn ratio is 100
 

rumbleweed

Newbie
May 16, 2025
34
86
27
Nice work.

What if we can diversifying sex action using dildo action currently in the game?

To put it simply, if we treat npc as a dildo when Manaka's sex action is output, we can diversify the number of cases as follows.

1. cowgirl(=dildo on floor) - sex / anal

2. not cowgirl(=standing=dildo on wall) - sex / anal / fellatio

I think using this method (if we can), you can produce various scenes while using npc's json almost as it is.
 

cxg4E5o

New Member
May 1, 2023
1
2
77
The problem Mishun had few posts earlier seems to be caused by a decimal separator in config.txt. I had this problem too and was able to fix it by replacing . with ,


I believe that in the code values from config.txt are first read as strings and then converted to numbers with function that natively uses OS region/culture settings to parse values. Therefore, if user's OS has region/culture, where decimal separator is anything other than dot (.), values from config end up being incorrect, probably defaulting to zero. There are no errors, mod works, but sex never ends as probabilities are always zero.

Changing values to 1 fixed the problem for Mishun not because it represents 100%, but because 1 doesn't have decimal separator in it.

My system also uses comma as separator and I also had problem with infinite sex. And I was able to fix it by replacing all the dots with commas in config.

TLDR:
if sexEndChancePerSecondRatio=0.004 causes infinite sex, try changing it to sexEndChancePerSecondRatio=0,004
 

Syokusyu

Member
Donor
Aug 7, 2017
450
1,596
365
I have the opposite problem of infinite sex, it ends within 3 seconds.
I've tried changing sexEndChancePerSecondRatio to some stupid number like 0.000000001 and various others in between, but that didn't change anything.
I had to change the dot to a comma to invoke the infinite sex bug for some normal action. I put sexEndEjaculateAddedChance to 1.0 to get released upon orgasm, which works fine.