kuro95zone

Newbie
Jul 8, 2021
78
54
and still, with all it flaws, this is the only game where you can make your own wierd shit happen.
For me the pixel sex is mostly ignored focsing on the "what if" in the life my characters play.

But, yeah the base game could use a good about of updates and improvements + better docu
 
  • Like
Reactions: srg91 and chwX

Ssato243

Engaged Member
Feb 2, 2021
2,684
1,527
Thanks for the update but I am waiting for the ver 15 it looks good but when I try to download is good
 

Icebird

Member
Sep 22, 2017
396
284
Isn't timeout modified by the scene frequency setting? So 300 would default to being 300 hours, but could be as low as 30 (i.e. a bit over a day)
The 'timeout' use hours as described. But this affected by 'scene frequency' settings. So if some scenes has 300 hours timeout and the scene frequency value (by default) is 2 then the scene can reappear after 150 hours (timeoutvalue / scenefequency = timecanappearagain).
There is another timeout command the 'timeoutPrecise'. This ignores the scene frequency settings and use the real elapsed game time to timing out.
 

Satyr90

Member
Dec 23, 2020
287
192
Is there a complete list of animations somewhere for this game? I'm trying to use them in a scene I'm creating and the animations in the documents folder doesn't have some animations listed. So now I'm wondering what else is missing.
 

Thermophob

Well-Known Member
Apr 10, 2018
1,945
2,681
The 'timeout' use hours as described. But this affected by 'scene frequency' settings. So if some scenes has 300 hours timeout and the scene frequency value (by default) is 2 then the scene can reappear after 150 hours (timeoutvalue / scenefequency = timecanappearagain).
There is another timeout command the 'timeoutPrecise'. This ignores the scene frequency settings and use the real elapsed game time to timing out.
Thanks for explanation. :)
Btw, I looked a bit in module. There are two scenes: poly_couple and poly_couple_repeats. Later has timeout 100.
 

brigade29

Newbie
Apr 17, 2019
79
25
Hello everyone, can someone tell me why i can't pimp my pnc out while her attraction and pervertion are full ? she always refuse and our relation rapport suffer ... is it a bug or what ?
 

Hell Razor

Newbie
Sep 17, 2021
39
40
Hello everyone, can someone tell me why i can't pimp my pnc out while her attraction and pervertion are full ? she always refuse and our relation rapport suffer ... is it a bug or what ?

Has to be at least a bit submissive. Or you can edit the file to make it easier...
 

Rebby

Member
Apr 17, 2017
227
351
I'm getting a bug where the game freezes up while trying to run
Pornstar_porn_shoot_public
luckely the game recognises its running a loop and times out.

anyone else running into this?
 

Ravenger6660

Active Member
Sep 14, 2017
862
1,010
I'm getting a bug where the game freezes up while trying to run
Pornstar_porn_shoot_public
luckely the game recognises its running a loop and times out.

anyone else running into this?
I'll look into. I'm the one who made it.

How it work it should work is that it makes a random pornstar blends them with a better body.
Code:
Pornstar = generatePersonTemporary()
While !Player.isInterestedIn(Pornstar) || age > 39
    Pornstar = generatePersonTemporary()
Endwhile
Then generates other npcs based on the pornstar's gender interests.

I do find that when I set male population to 0.01 it takes a while for a 'straight female pornstar' to get the male companions. Age might be the problem as well.

Where does it break?
At start or during.
 
Last edited:

jabberwockyjon

New Member
Aug 6, 2021
6
0
Does anyone know how to make your character default to the center of a gangbang for porn scenes? Nothing in the scene description is cluing me in on what to change.
 

DitaVonTease

Active Member
Jul 25, 2021
616
1,292
Silly question time, how do you get yourself into a long term BDSM scene, or lots of public sex, (think ''Public Disgrace'' videos, either as a sex slave to a mixed audience, or at a Lesbian Bar?).
 

knurd

Member
Jun 2, 2019
113
74
I had a girlfriend who was always in the bedroom with me in the evenings. I got another girlfriend and now the girlfriend no longer in the bedroom with me? Anybody know how to get her to do that again? I tried to make her the only girlfriend/wife & I got rid of the other girlfriend but can't never get her to be there in the evenings anymore? The move in sqript doesn't work either.
 

Ravenger6660

Active Member
Sep 14, 2017
862
1,010
Does anyone know how to make your character default to the center of a gangbang for porn scenes? Nothing in the scene description is cluing me in on what to change.
position in command
male vs female is a factor

filter(aggressive)
filter(aggressiveFM)

Sex(Player, Actor, Actor2, Actor3)

not

Sex(Actor, Actor2, Actor3, Player)
 
  • Like
Reactions: jabberwockyjon

Vorastrix

Newbie
Mar 19, 2018
17
9
I'll look into. I'm the one who made it.

How it work it should work is that it makes a random pornstar blends them with a better body.
Code:
Pornstar = generatePersonTemporary()
While !Player.isInterestedIn(Pornstar) || age > 39
    Pornstar = generatePersonTemporary()
Endwhile
Then generates other npcs based on the pornstar's gender interests.

I do find that when I set male population to 0.01 it takes a while for a 'straight female pornstar' to get the male companions. Age might be the problem as well.

Where does it break?
At start or during.
I have the same issue of the game freezing when some scenes are starting. In all cases for me they are when my character is female and the generatePersonTemporary() is used. Form what I can tell it is when the generatePersonTemporary() is called at the start of the scene.
 
Last edited:

Ravenger6660

Active Member
Sep 14, 2017
862
1,010
I'm getting a bug where the game freezes up while trying to run
Pornstar_porn_shoot_public
luckely the game recognises its running a loop and times out.

anyone else running into this?
I have the same issue of the game freezing when some scenes are starting. In all cases for me they are when my character is female and the generatePersonTemporary() is used. Form what I can tell it is when the generatePersonTemporary() is called at the start of the scene.
I made a fix.
the only way an infinite loop could occur is if the pornstar had no gender preferences (AKA Does not want to have sex with male, female, nor futa)

my fix, check if that is now the case.

Code:
    if Pornstar.isAsexual()
         Pornstar.makeInterested(player)
    Endif
    While !Pornstar.isInterestedIn(Actor2)
        Actor2 = generatePersonTemporary()
    Endwhile
 

Rebby

Member
Apr 17, 2017
227
351
I made a fix.
the only way an infinite loop could occur is if the pornstar had no gender preferences (AKA Does not want to have sex with male, female, nor futa)

my fix, check if that is now the case.

Code:
    if Pornstar.isAsexual()
         Pornstar.makeInterested(player)
    Endif
    While !Pornstar.isInterestedIn(Actor2)
        Actor2 = generatePersonTemporary()
    Endwhile
thanks for the effort, but sadly I encounter the same error as before.
maybe its on my end, my pc is about 7-8 years old still running win 8.1
 
3.30 star(s) 118 Votes