LeGenie

New Member
Jan 23, 2022
2
0
I'm having some issues with a mod I am trying to make.
If anyone can spare a moment of their time and knowledge, it's a simple choice that I want to add. For some reason, it always autos to 0 when I select choice 1. Add to that, it then ignores my if/else statements and plays both as if the if/else statement didn't even exist.

I am using Notepad++

this is the mod...

Code:
WHAT: ALL
WHERE: home
WHEN: 16-24
WHO: Actor = getRelative();
OTHER:

    SceneStart()
    Actor.dress()
    Actor.show(2)
    "My <Actor.relationship> and I just watched a history documentary about royal families during the medieval period together on TV."
    Player(Happy):: "Wow, I can't believe people used to ..."
    0:: "Be married off to seal alliances"
    1:: "Marry their <Actor.relationship>s"
    
    If 0
        Actor(Sad):: "Yeah it's a shame that women used to be used as nothing more than pawns in the diplomacy game."
    Else
        Actor(Embarrassed):: "..."
        "Wow, that conversation just got awkward real quick ..."
        Player():: "Don't tell me you wish it was possible?"
        Actor():: "I.. please don't judge me if I say this"
        0:: "Sure you can tell me anything."
        1:: "Oh nah I will judge the fuck out of you, it's what family does."
        
        
        If 0 {
            Actor(Happy):: " Well we all know you are somehow the prettiest girl in the world... how could anyone not want you"
            Player(Happy):: "Okay okay fair point does that mean you want me?"
            Actor()::"... everyone does Genie"
            Player()::" Oh I can't give you that but I might be able to give you a close second?"
            Actor:arousal +=30
            Actor:mood += 20
            If Actor:arousal >60
                Actor():: " I will take anything you offer no joke"
                "I notice their dick getting hard through their pants"
                "I reach into their pants and pull out their meat... might as well satisfy them"
                Filter(Handjob)
                Sex(Actor, Player)
                Actor():: you are literally the best <Actor.relationship> in the world"
                " I lick their nut off my fingers and say... I know"
            Endif }
        Elseif 1{
            If Actor: arousal >70
                Actor():: "Why do you have to be so MEAN"
                Player():: " cuz I'm cool like that, what do you want from me ho"
                Actor():: "That is it I've had enough.. I BLAME YOU FOR WHAT I'M ABOUT TO DO"
                Player()::" No... NO BACK OFF FUCKER"
                    Filter(Aggressive, anal, Anal)
                    TalkNonConsensual()
                    SexNoAffair(Actor, Player)
                    masochist += 15 
                Player():: " Oh god what have you done, you bitch!"
                Actor():: "Relax it was just anal... you're cool like that aren't you? your words, not mine!"
                Player():: " I hate you so much right now"
                " I slapped them and went to my room... honestly it was some of the best anal in my life I think I like being forced by my family. I'll never admit it tho"
            Endif
        Endif }
                
        Actor: mood += 100
        mood+= 100
        Actor:incest += Random(0, 30)
    Endif
    
    SceneEnd()
    timeout(2, family_history_incest)
 

larsV

Member
Jan 13, 2018
203
70
Do any of the existing mods add more story/ambient quests?
well some mods do add something more to the gameplay/story,but no quests (exsample if you download ravengers scenes and add the folders roommates,police,and fighting you will get more scenes, and in the folder leading to action grab the maid stuff)
 
  • Sad
Reactions: Spamwise

Icebird

Member
Sep 22, 2017
396
284
And without '{'s and '}'s? This characters are unused here.
Do you use the syntax highlighter from Docs folder? (as I see you need it because your syntax errors)

Ps:
'Actor: arousal' wrong
'Actor:arousal' right

also:
Actor: mood += 100 -> 'Actor:mood += 100'
mood+= 100 -> 'mood += 100' (or if you want to max it it's an alternative 'mood => 100')

broken here:
'Actor():: you are literally...' missing apostrophes 'Actor():: "you are literally...'

Okay, I share my highlighter for np++ what is expanded with missing commands
 
Last edited:
  • Like
Reactions: knurd

Kiko444

New Member
Oct 8, 2021
12
11
Anyone use Winlator to play on Android? You can help me with setting cuz I can play GTA V but not this game on my phone.....
 

larsV

Member
Jan 13, 2018
203
70
Anyone use Winlator to play on Android? You can help me with setting cuz I can play GTA V but not this game on my phone.....
this game is not for mobile,only desktop,even with a emulator for windows on android,the game is not playable on mobile
 
  • Like
Reactions: knurd
Nov 1, 2019
177
68
I'm having some issues with a mod I am trying to make.
If anyone can spare a moment of their time and knowledge, it's a simple choice that I want to add. For some reason, it always autos to 0 when I select choice 1. Add to that, it then ignores my if/else statements and plays both as if the if/else statement didn't even exist.

I am using Notepad++

this is the mod...

Code:
WHAT: ALL
WHERE: home
WHEN: 16-24
WHO: Actor = getRelative();
OTHER:

    SceneStart()
    Actor.dress()
    Actor.show(2)
    "My <Actor.relationship> and I just watched a history documentary about royal families during the medieval period together on TV."
    Player(Happy):: "Wow, I can't believe people used to ..."
    0:: "Be married off to seal alliances"
    1:: "Marry their <Actor.relationship>s"
  
    If 0
        Actor(Sad):: "Yeah it's a shame that women used to be used as nothing more than pawns in the diplomacy game."
    Else
        Actor(Embarrassed):: "..."
        "Wow, that conversation just got awkward real quick ..."
        Player():: "Don't tell me you wish it was possible?"
        Actor():: "I.. please don't judge me if I say this"
        0:: "Sure you can tell me anything."
        1:: "Oh nah I will judge the fuck out of you, it's what family does."
      
      
        If 0 {
            Actor(Happy):: " Well we all know you are somehow the prettiest girl in the world... how could anyone not want you"
            Player(Happy):: "Okay okay fair point does that mean you want me?"
            Actor()::"... everyone does Genie"
            Player()::" Oh I can't give you that but I might be able to give you a close second?"
            Actor:arousal +=30
            Actor:mood += 20
            If Actor:arousal >60
                Actor():: " I will take anything you offer no joke"
                "I notice their dick getting hard through their pants"
                "I reach into their pants and pull out their meat... might as well satisfy them"
                Filter(Handjob)
                Sex(Actor, Player)
                Actor():: you are literally the best <Actor.relationship> in the world"
                " I lick their nut off my fingers and say... I know"
            Endif }
        Elseif 1{
            If Actor: arousal >70
                Actor():: "Why do you have to be so MEAN"
                Player():: " cuz I'm cool like that, what do you want from me ho"
                Actor():: "That is it I've had enough.. I BLAME YOU FOR WHAT I'M ABOUT TO DO"
                Player()::" No... NO BACK OFF FUCKER"
                    Filter(Aggressive, anal, Anal)
                    TalkNonConsensual()
                    SexNoAffair(Actor, Player)
                    masochist += 15
                Player():: " Oh god what have you done, you bitch!"
                Actor():: "Relax it was just anal... you're cool like that aren't you? your words, not mine!"
                Player():: " I hate you so much right now"
                " I slapped them and went to my room... honestly it was some of the best anal in my life I think I like being forced by my family. I'll never admit it tho"
            Endif
        Endif }
              
        Actor: mood += 100
        mood+= 100
        Actor:incest += Random(0, 30)
    Endif
  
    SceneEnd()
    timeout(2, family_history_incest)
If you only have 2 choices, don't elseif, just else. also remove the brances ( {} ) to see whether that works differently.
 

Rogue Reaper

Newbie
Aug 7, 2021
28
26
Seems there are three mods in the ModManager addon that don't work, both of Rizean's and the BetterPregnacy give errors and don't enable.
 

Rogue Reaper

Newbie
Aug 7, 2021
28
26
Better pregnancy was never updated most of what it did was added to the main game long ago. It's been obsolete maybe 3 years.
Ah, alright, thank you.. Good thing I came back after work before installing it, was going to add the preg mod manually. :ROFLMAO:
 

Chameleo

Member
May 20, 2017
399
403
Is there a possibility to lower the amount of sex events? I know, it's a porn game, but I want it to be somewhat realistic, but I spend time with my family and during those four hours, my family wants to fuck me, my sister's girlfriend wants to fuck me, my landlord wants to fuck me... I would like these moments to be more rare. Mainly because there is -80 attraction between me and my family members, I wanted to build those moments up.
 

R0y

Member
Nov 25, 2017
384
241
Seems there are three mods in the ModManager addon that don't work, both of Rizean's and the BetterPregnacy give errors and don't enable.
I got it but not active in mods manger. I replaced the game "meet new person" file with the one from Better Pregnancy because you randomly meet women already 8 or 9 months pregnant and it has a lot of model presents. You may want to do that Roger? It's a great mod which I wish could be repaired.
 

Icebird

Member
Sep 22, 2017
396
284
I got it but not active in mods manger. I replaced the game "meet new person" file with the one from Better Pregnancy because you randomly meet women already 8 or 9 months pregnant and it has a lot of model presents. You may want to do that Roger? It's a great mod which I wish could be repaired.
The problem is with that technically cannot adjust the pregnancy time, so the newly created looks like 8 month pregnant npc will start with 0 day pregnancy time and look like as a 8 month pregnant during the whole period. Thats why that old mod sucks, and causing mostly they pregnant appearance remains after birthgiving.
(Within my mod the pregnancy appearance handled continuously, so the belly grows during the time, and after birthgiving the mod remove all the trace of pregnancy, restoring the npc's original looks. Neither the better_pregnancy or the official mod isn't capable to do this checks and corrections. Also the lactation did not exist at that time. Good old Lifeplay v3.x times...)
 
Last edited:
  • Like
Reactions: R0y

Icebird

Member
Sep 22, 2017
396
284
Is there a possibility to lower the amount of sex events? I know, it's a porn game, but I want it to be somewhat realistic, but I spend time with my family and during those four hours, my family wants to fuck me, my sister's girlfriend wants to fuck me, my landlord wants to fuck me... I would like these moments to be more rare. Mainly because there is -80 attraction between me and my family members, I wanted to build those moments up.
You can set manually each scene's timeout during they dialog, or just skipping to run clicking on emergency. Also you can tempoary disable mods like incest if you wanna avoid that contents for a time, or try play without mods using only the necessary ones (vanilla).
But remember this game's scenes mostly (around 80-90%) focus on erotic content, with mods this ratio could be stronger. So it is clearly not a dating game now.
 
  • Like
Reactions: R0y
3.30 star(s) 118 Votes