coretex

Active Member
Jun 15, 2017
584
495
The one problem with this type of game and mods, at least the current way they have it designed, even what looks like a minor update to us could be sweeping code changes behind the scenes requiring mods to update at just about every minor version update.. so I figure with the bar girls mod, it would need code changes to compatible with 16f. So until the author updates it its going to be broken.
 

l1lym

Aphrodite, creator of X-Change Life™
Game Developer
Jan 21, 2019
948
2,993
I don't have really have internet basically just doing it with a phone and it's data.

Finally got it downloaded. Are the female's physical features preset?
Glad you got it downloaded! Yes the physical features are preset - they align with the actual features of the pornstars used for the 10 characters.
 

Ravenger6660

Active Member
Sep 14, 2017
826
960
I do not like the fact that if you creampie a girl not on the pill, you lose them forever.
So I made a line of code to have them not longer mad at you and start taking the pill.

Code:
:: bar chat girl greeting {"position":"16945,3035","size":"100,100"}
{
    (if:$npc's "relationship" is -1)[
        (either:
            "She doesn't want to talk to you.",
            "She's not interested in talking to you.",
            "She blows you off.",
            "She doesn't seem like she wants to talk to you.",
            "Yep, she's still mad at you."
        )
        (if:(random:1, 10) is 1)[   <-------Change
            (set:$npc's "relationship" to 0)
            (set:$npc's "traits" to it + (a:"pill"))
            (set:$npc's "traits" to it - (a:"no pill"))
        ]

    ](else:)[
        (if:$npc's "familiarity male" is 0)[
            (if:$character's "effective charm" is < 4)[
                "(either:
                    "Uhh...",
                    "Umm...",
                    "Um..."
                ) (either:
                    "hi.",
                    "hi there.",
                    "can I help you?",
                    "hello?",
                    "hiya.",
                    "need something?",
                    "what is it?"
                )"
            ](else-if:$character's "effective charm" > 7)[
                "(either:
                    "Hey there!",
                    "Why hello there!",
                    "Well, look at you!",
                    "Did you just turn up to make this boring night better?",
                    "What's cookin, good lookin?",
                    "Hey there, I don't know you.",
                    "Hey there!",
                    "Well, hello there.",
                    "Oh hi there!",
                    "Hi!",
                    "Hey there!",
                    "Hi, you're new!",
                    "Hey, have I seen you around here before?"
                )"
            ](else:)[
                "(either:
                    "Uhh... hi!",
                    "Here there!",
                    "Hello.",
                    "Oh, hello.",
                    "Hi there.",
                    "Good evening.",
                    "Hey.",
                    "Hey there.",
                    "Hi there!",
                    "Oh, hello."
                )"
            ]
        ](else-if:$npc's "familiarity male" > 0)[
            (if:$npc's "id" is "leah")[
                (set:$line to (either:
                    "hiya",
                    "hey there",
                    "hey whats up",
                    "hey hows it going"
                ))
                (display:"bar npc voice line")
            ]
            "(either:
                "Hello",
                "Hi",
                "Hi there,"
            )
            (print:$character's "male name")."
        ]
    ]
}
 
Last edited:

Ravenger6660

Active Member
Sep 14, 2017
826
960
@Ebiora the creator of Exhibitionist Mod 1.4

I did a rough edit to your code so that your exhibition will sometimes lead to surprise fucking.

Code:
:: sex transactional caught {"position":"8425,1000"}
(if:$scene_type is "sex bedroom")[(display:"sex transactional caught family")]
(if:(random:1,2) is 1 and $character's "gender" is "female" and not $npc's is "male" and not $room to "your bedroom")[(set:$next to "bar drug backroom")(display:"sex transactional caught surprise fuck")] <-------Change
(else:)[(set:$song to 0)(display:"play song")(set:$se to "alert")(display:"play sound")(print:"<img class='greyborder' src='img/npc/generic/shocked/" +  (text:(random:1,10)) + ".jpg' width='100%' height=auto>")
(print:$interrupt)(if:(random:1,2) is 1)[ *(either:"Ohhh shit.","Fuck.","Fuck my life.","Oh, goddammit.")*]

"(either:"Holy shit!","Holy fuck!!!","Oh my GOD!")" (either:"he shouts.","he exclaims.") "(either:"What the hell is going on in here?","What the hell's going on in here???","You're... fuck! What the hell are you doing?","What are you DOING?")"(display:"exhibitionist check")(if:$exhibitionist_check is true)[(set:$new_mood to (dm:
    "mood","blissful",
    "emoji","",
    "strength",4,
    "length",3,
    "cause","Since you can't stop thinking about how you were caught in the act in public.",
    "charm buff",-2,
    "intellect buff",-1
    ))(display:"new mood")(display:"refresh stats")(set:$minigame's "masculinity level" to (max:40,$minigame's "masculinity level" - 10))

  Having someone catch you in the act like this, it's so hot! (if:$orgasms > 0)[You just want to come again.](display:"exhibitionist check")
  <div class='options'>(if:$exhibitionist_check is true)[(set:$next to "exhibitionist public orgasm")(link:"It's too much...")[(display:"change screen")]](else:)[(set:$next to "advance time")(set:$minigame's "afterwards" to (text:$next))(display:"masculinity crisis link")]</div>](else:)[(set:$new_mood to (dm:
    "mood","embarrassed",
    "emoji","",
    "strength",4,
    "length",3,
    "cause","Since you were caught having sex in public.",
    "charm buff",-2,
    "intellect buff",0
    ))(display:"new mood")(display:"refresh stats")

How humiliating...(if:$orgasms > 0)[(set:$character's "arousal" to 0)(display:"refresh stats") at least you came, though.]
<div class='options'>(set:$next to "advance time")(set:$minigame's "afterwards" to (text:$next))(display:"masculinity crisis link")</div>]](set:$sex_loop to 0)(display:"play sex loop")

:: sex transactional caught surprise fuck <-------Change
{
    (display:"generate random guy")(display:"npc screen update")
    Before you're even sure what's happening, a man forces himself upon you, you're too horny to refuse.(print:"\n\n")
    (set:$option to "accept")
    (set:$next to "proposition accept fuck")
    (set:$scene's "interrupt chance" to -1000)
    (display:"change screen")
}
 
Last edited:

l1lym

Aphrodite, creator of X-Change Life™
Game Developer
Jan 21, 2019
948
2,993
Sounds like you should get into the modding scene Ravenger6660 !

As you can see, the code that X-Change Life is made from is very easy to read and edit. Making a mod is as simple as making a file that contains the changed passages, and the mod loader handles the rest.
 

Ravenger6660

Active Member
Sep 14, 2017
826
960
Sounds like you should get into the modding scene Ravenger6660 !

As you can see, the code that X-Change Life is made from is very easy to read and edit. Making a mod is as simple as making a file that contains the changed passages, and the mod loader handles the rest.
I already mod for Lifeplay { https://f95zone.to/threads/lifeplay-v5-26-vinfamy.11321/post-4138623 }
Having created 181 of my custom scenes & Altered/replacement 385 scenes.

The thing that hold me back from this game, is not knowing what every keyword does and what keyword are available to me. And a limited selection of porn videos and characters.
 
Mar 17, 2021
40
37
I wanted to update that despite playing this game a couple of times per week for the past couple of weeks, I have not been able to reproduce the issues that I'd previously reported. Either mod updates have smoothed them out or I've gotten lucky - or less stupid. I have very few problems playing this and most are likely user error.
 
  • Like
Reactions: l1lym

l1lym

Aphrodite, creator of X-Change Life™
Game Developer
Jan 21, 2019
948
2,993
I'm hard at work on the office stuff at the moment.

Subscribers have voted for the Petite pill to be the next demo available - I will work on the next demo once I have gotten enough of the core progression mechanics in the office job completed.

I wanted to update that despite playing this game a couple of times per week for the past couple of weeks, I have not been able to reproduce the issues that I'd previously reported. Either mod updates have smoothed them out or I've gotten lucky - or less stupid. I have very few problems playing this and most are likely user error.
Great to hear! It's very possible then that they were due to old save data messing you up, or something like that.

I've had a lot of help with this upcoming release to get it really nice and stable - so hopefully this will be even smoother. On the Discord there are "bug bounties" so that every bug found and fixed gets contributors a prize. I figured that was a good use of Subscriber funds, since it will improve the play experience for everyone.
 
Last edited:

Triepslay

Newbie
Mar 23, 2020
56
122
This game is honestly great so far, technically the story has not even started but the world building is great, now I can't say the same about the characters cuz we haven't really seen any story related things, the MC's story or the family's story and the MC so far only has one friend so I'm not gonna talk about the story or anything like that.

This game is one of the best in this genre, it has the potential to be the best, I love a story that keeps me hooked when playing a game but this game made me hooked even without one.

Following the thread for a bit I can tell that the dev is actually passionate about this game and when you play it you could tell because of how good it is and honestly I regard this game so high because of the devoloper and also because of the people that play it, the thread is filled with helpful people and they're always supporting while the dev is doing the same, responding to questions and providing help. It's rare to see a developer connected with their community especially because of this website's reality which makes me respect the dev even more.

I love the idea of a roadmap as well cuz then I don't have to ask questions and I can just look there and wait for the update that has the content I want, I also love how the dev listens to the players and takes ideas from them instead of brushing them off.

Great game, great world buildup, huge potential to be the best of its genre, a great community and a great developer. This game honestly has everything set for success so I wish the dev nothing but success.
 

friendlyhelper

New Member
Mar 28, 2021
4
4
Really enjoying the game so far. But there is a gameplay issue I am encountering with my preferred playstyle. I am going for a prostitution type route, where I try to unlock every outfit without ever taking on the job with the pill company. I make all the money from the random encounters you get by loitering. But what is really frustrating is that some of the stealth checks are just hard RNG with no outplay. It would be nice if you could choose to play a minigame instead for the ones where currently it just always rolls the dice.
 
  • Like
Reactions: Boucherus
4.60 star(s) 87 Votes