Icebird

Member
Sep 22, 2017
311
215
If anyone wondering why some porn shoot does not increase player's money, Its because the choice adding director into the scene messed up the calculation script.

here's my quick dirty fix

Elseif 3 || Random(0, 100) < choice*pornfame
// add this
If choice = 1
diff = 1
Elseif choice = 2
diff = 2
Else
diff = 3
EndIf


money => money + Dice/choice // replace with
money += Dice/diff

I use += rather than => money gained using => does not increase the money achievement progression.

back to lurking
wow... post edit hates tab
Sry to say, but you use wrong the equal above.
If you want to give a variable a value use "variable = value" ( "choice = 1" gives the 'choice' '1' as value )
If you inspect a variable to be have a desired value or condition use "If variable == value" ( "If choice == 1" gives the inspection true or false value).
So my opinion the "If choice = 1" and the "Elseif choice = 2" never return a true state and the "Else" line will be the only valid option, this means this code always return that "diff" is 3.
But if you wanna simplify the whole thing why not use this instead?
"money += Dice/choice"
 
Last edited:

Icebird

Member
Sep 22, 2017
311
215
Hey guys, I redownload this game every so often, and try to get the game to produce asian npcs. I'm still getting no luck I think the last time I tried was 5.3 or something. Am I just doing something wrong, or is race not really something that works very well yet?
To be honest the game doesn't generate asians well enough. If you has patience you can modify the beauty standards in the game with gives the asian specific standards (like face presets) what you like more points. With this workaround more acceptable asian npc will be generated for you.
 

Blue_Ant

New Member
Jul 23, 2021
12
7
But if you wanna simplify the whole thing why not use this instead?
"money += Dice/choice"
This normally works. But in some scenes, there's another choice that will overwrite the previous choice value.
e.g in porn_shoot.lpscene
the first 4 Choices determine the payment
0:quit
1:full payment receive
2:half payment receive
3:1 third payment receive.

If it stop there, then yes, your solution are correct.
However, in several cases, there are more choices to be made
e.g
0:add director to the scene
1:add bystanders to the scene
This overwrite the choice value

since the original payment calculation are
money => money + Dice/choice
if the player chose 0 ... well anything divided by zero will explode or return 0 or null, the player will gain nothing after the scene.

That's why i use custom var only for the first choice options.
Yes, maybe its not elegant, since i am not a coder.
it just works.
 
  • Like
Reactions: larsV

larsV

Member
Jan 13, 2018
194
66
If anyone wondering why some porn shoot does not increase player's money, Its because the choice adding director into the scene messed up the calculation script.

here's my quick dirty fix

Elseif 3 || Random(0, 100) < choice*pornfame
// add this
If choice = 1
diff = 1
Elseif choice = 2
diff = 2
Else
diff = 3
EndIf


money => money + Dice/choice // replace with
money += Dice/diff

I use += rather than => money gained using => does not increase the money achievement progression.

back to lurking
wow... post edit hates tab
could you look into the photo shoot ? i have the feeling that same problem is going on there,a few shoots are not getting paid,if you accept clothes too
 

larsV

Member
Jan 13, 2018
194
66
This normally works. But in some scenes, there's another choice that will overwrite the previous choice value.
e.g in porn_shoot.lpscene
the first 4 Choices determine the payment
0:quit
1:full payment receive
2:half payment receive
3:1 third payment receive.

If it stop there, then yes, your solution are correct.
However, in several cases, there are more choices to be made
e.g
0:add director to the scene
1:add bystanders to the scene
This overwrite the choice value

since the original payment calculation are
money => money + Dice/choice
if the player chose 0 ... well anything divided by zero will explode or return 0 or null, the player will gain nothing after the scene.

That's why i use custom var only for the first choice options.
Yes, maybe its not elegant, since i am not a coder.
it just works.
yes it does works,greatly thanks for finding the solution to this bug :)
 

Icebird

Member
Sep 22, 2017
311
215
This normally works. But in some scenes, there's another choice that will overwrite the previous choice value.

That's why i use custom var only for the first choice options.
Yes, maybe its not elegant, since i am not a coder.
it just works.
You find a solution yourself so it's great. (y) (And I can confirm that scene is faulty.)
While I play with this game I'm do the same, find solutions to the bugs and write over codes according to my taste.
Let me share how I wroted over that scene:
Code:
0:: "Turn down the offer"
1:: "Rip the director off (<P1C>)"
2:: "Offer a fair price (<P2C>)"
3:: "Give the director a bargain (<P3C>)"
       
selected = choice
I give an other name (use a custom variable to store the value) for the fixed variable 'choice' and use as 'selected' when it needs.

...later where the payout happen only inserted this (what's equal with your method):

Code:
money += (Dice/selected)
So the outcome is same.
 
Last edited:

Blue_Ant

New Member
Jul 23, 2021
12
7
could you look into the photo shoot ? i have the feeling that same problem is going on there,a few shoots are not getting paid,if you accept clothes too
it should be fine, since the choice of keeping the clothes came after the money calculation

original
money += Random(2500, 10000)/choice
modelfame += 0.25

try using this, just to check
//
checkIncome = Random(2500, 10000)/choice
money += checkIncome
"I gained <checkIncome>"
modelfame += 0.25
 

Blue_Ant

New Member
Jul 23, 2021
12
7
selected = choice[/CODE]

I give an other name (use a custom variable to store the value) for the fixed variable 'choice' and use as 'selected' when it needs.

...later where the payout happen only inserted this (what's equal with your method):

Code:
money += (Dice/selected)
So the outcome is same.
your solution uses less line... much better than mine :D
will implement it to my files
 
  • Like
Reactions: Icebird

Hogeyhead

Newbie
Mar 17, 2020
29
5
To be honest the game doesn't generate asians well enough. If you has patience you can modify the beauty standards in the game with gives the asian specific standards (like face presets) what you like more points. With this workaround more acceptable asian npc will be generated for you.
I've tried that, but never really gotten it to work. I'm willing, but really I kind of need some help. Do you have some settings that work, either a file or just tell me what to set it to? If that's too much trouble I understand. But thanks.
 

Vamos69

Newbie
Apr 6, 2022
21
28
The last updates were very bad. Is the creator really the real creator because I don't see any improvement anywhere, I only see degradation.
 

Mercedes

Active Member
Nov 19, 2017
724
873
Somehow a lot of updates are aimed at you playing a male MC.
Personally, I would like to see more content for female MC's again.
Yes, fuck I can as a female MC with anyone, but sometimes you just put value on the lyrics, which would make the entsprechendew scene much more interesting.

For example, you could be a boss of a company yes itself victim of blackmailing.
one could be left by SO because one is not active enough in bed. To avoid this, you could offer the So to apprentice with someone or attend certain activities together. Swinger club, strip club, nudist beach ect.
The SO could get one to show off more of themselves so they can show off more (which doesn't necessarily include sex with strangers).

By the way, the bugs I pointed out after the penultimate update, such as falling under the floor in the clothes closet, are still there.
How about two months without a quantitative update, but with qualitative updates?
 

NotEnoughHats

Member
Mar 27, 2019
158
92
Somehow a lot of updates are aimed at you playing a male MC.
Personally, I would like to see more content for female MC's again.
Yes, fuck I can as a female MC with anyone, but sometimes you just put value on the lyrics, which would make the entsprechendew scene much more interesting.

For example, you could be a boss of a company yes itself victim of blackmailing.
one could be left by SO because one is not active enough in bed. To avoid this, you could offer the So to apprentice with someone or attend certain activities together. Swinger club, strip club, nudist beach ect.
The SO could get one to show off more of themselves so they can show off more (which doesn't necessarily include sex with strangers).

By the way, the bugs I pointed out after the penultimate update, such as falling under the floor in the clothes closet, are still there.
How about two months without a quantitative update, but with qualitative updates?
All updates are chosen by Patreon votes. So unless people request and vote for female MC stuff, you'll most likely won't see it.
 

Mercedes

Active Member
Nov 19, 2017
724
873
All updates are chosen by Patreon votes. So unless people request and vote for female MC stuff, you'll most likely won't see it.
I know they are Patreon choices. I was once a supporter myself.
But the problem is once again in dealing with the supporters. As a guest on Patreon I can see the Strat contribution to the Poll off the Mounth. But not the complete list of eligible kinks (or if, then only very cumbersome that I gave up searching.) Would be here to access easier, I think new supporters could also be attracted (Even if it is only for a month or two), because they can see when it might be worthwhile to become a supporter to push their own favorite kink.
But even so, if you read the winning posts of the last months, it is obvious that 80% of the eligible kinks also refer to male MC or you can only experience pregnancies as a female MC.

But the real problem is hidden in the last sentence:
How about two months without a quantitative update, but with qualitative updates?
 

Jamsalad

Active Member
Mar 22, 2018
540
527
From what I see, they only add scenarios and maybe plop in an asset or two, but they don't make any effort to improving the animations, rendering or anything of substantial value.
That's my biggest complaint of the development. It's just a constant stream of new scenarios and the most popular scenarios incest / pregnancy have to constantly take a back burner every 3 months because they won too frequently , which is dumb. Dev needs to cool off with the monthly updates and actually make some updates of substance.

For some reason, without tweaking stats, I am almost always able to get family members to sleep with me on the first day. It would be nice if there was a more realistic time frame there and more scenarios related to incest / pregnancy, you know the most two popular things in the game.

Also the main story missions have been bugged forever now. You'll finish the last mission and be able to repeat it several times for some reason . (the murder one / reality show one)
 
3.30 star(s) 117 Votes