SexGameSluts — Who Will You Fuck First? Play Now!
x

Inert

New Member
May 25, 2018
7
10
127
The sister gets created right after you pick your own character stats/image. Did that process complete properly?
I guess you could say it's a... :cool: total fluke that you posted literally right now as I'm sitting here testing some things, because I've just figured it out.

I've played pretty much every update of this game since launch (absolutely love your work) - and not once have I cared about how the guys look, so I usually just delete the dude image folders and have the guys all look like clones with face masks on lol.

I actually completely forget the dudes are meant to have images.

Turns out this was breaking the new function of choosing your sister's image, as it was never prompting me to choose what my own guy looks like (which was the preceding step to choosing what the sister looks like).

So I added a dude image pack and now it's spawning the sister.

Again, love your work. Definitely a novel and harmless way to use AI art, and probably my favourite game since Lab Rats 2.

If I could make one single suggestion it would relate to the above and be a 'straight/bi/gay' toggle which would simply change all male images to be the same 'shadow dude' looking image, or gay mode would change all female characters to be a shadow lady (like an anonymous looking person). Bi would show all images.

Obviously just a suggestion - might be a stupid one idk. Game is great regardless. I just feel that most people would be playing to manage the gender that they're interested in sexually, but that might just be me.

Have a great day man.
 

Hubs_in_hose

Member
Jan 11, 2018
162
179
203
I'm enjoying the game so far. Yeah, it has some things that need to be cleaned up, but what game doesn't? I too am a fan of Lab Rats 2 and that brought me here. I'm eagerly awaiting some mods like are in LR2, especially ones that will make customizing and configuring the NPCs a lot easier.

Until then, I have a question. I've d/l'ed the image packs, updated the "image models to use" to include the new sets
1743960511908.png

and when I attempt to change the image for an NPC I get a "not valid" for this NPC
1743960472623.png

What did I do wrong?
 

Ayame

Newbie
Jun 6, 2017
93
28
182
I'm enjoying the game so far. Yeah, it has some things that need to be cleaned up, but what game doesn't? I too am a fan of Lab Rats 2 and that brought me here. I'm eagerly awaiting some mods like are in LR2, especially ones that will make customizing and configuring the NPCs a lot easier.

Until then, I have a question. I've d/l'ed the image packs, updated the "image models to use" to include the new sets
View attachment 4720096

and when I attempt to change the image for an NPC I get a "not valid" for this NPC
View attachment 4720094

What did I do wrong?
It seems that for age, height, race and other stats if they are not the same it gives you an error
 

Ayame

Newbie
Jun 6, 2017
93
28
182
ugh, I wish there were some sort of index as to what images are set for. It is almost making it too complicated.
There is a guide on how to create characters, check the names on the face image and check the stats of the character you want to change (if you don't like them copy the character you like and overwrite the name with the original character's)
 

FrayTomás

Newbie
Mar 17, 2019
34
13
193
The sister gets created right after you pick your own character stats/image. Did that process complete properly?

If you don't have the "closest_friend" field set it means it didn't even try to create an image for her. The only thing before that that could cause an issue is the logic to determine the gender and age of the sister. What's your character's age and sex orientation?

Can you start another game and see if the same thing happens. You only need to play the first couple of moves. Not even a full day. Just long enough to create your character. After that pass time once and check your contacts to see if the sister is there.



No, sorry. You have to do them one at a time.



Will look into that.



The MM sex stuff requires a lot of work. I haven't looked at it in forever. Hasn't been a high priority. In theory the vag_sex option shouldn't appear for MM and go straight into anal.



Not sure exactly what you mean. Most stories trigger via fairly passive means, either a time basis (for example the college sister story starts in July, the MC's mom in March of the second year) or when some threshold is reached (the mafia dudes start to show up when at least 3 clubs are making money, the movie offer starts after you hire a stripper). The cult story starts when you check out a naughty book from the library. That's really the only one I can think of that requires you to do something specific to trigger it.

I was thinking more about what content to expect, if the story has ended, or if I´m in a loop of the same events (as One Ball and his family dinners) waiting to achieve some requirements. Anyway thank you for the game and I´ll continue exploring the city (and trying to be friend as most possible characters as I can).
 

Not YrBroom

Member
Feb 9, 2023
199
243
134
The MM sex stuff requires a lot of work. I haven't looked at it in forever. Hasn't been a high priority. In theory the vag_sex option shouldn't appear for MM and go straight into anal.
It's there, but it just displays the generic "X and Y had sex" which I assume is from sexact.detail.vag_sex. I thought maybe just adding a sexact.detail.vag_sex.mm would be enough, but it still showed the generic version.
 

Not YrBroom

Member
Feb 9, 2023
199
243
134
No pregnant pictures, sorry, but they're not really interest me, and would be too much hassle to make (I'd feel compelled to make a pregnant pair for every and one picture).
With the way TF implemented pregnancy, you only really need 2-3 images at various z levels. But it's entirely your choice, of course. Thanks for sharing these!

Most probably there are some mistakes with the filenames, sorry about that.
Only one that I see: num-00009-z6-z3.png should be num-00009-z6-s3.png.
 
  • Like
Reactions: NumeriusNegidius15
Aug 9, 2018
196
110
213
What exactly are the qualifiers for the movie audition?

Character has a penis size of 67 but consistently fails despite all steps completed as detailed.

Is Lewdness a factor?
 

Sir_EatsALot

Active Member
Aug 24, 2017
633
761
295
I should reply here too since they dm'd me asking how to do this and others might be interested. I haven't tested it but something like this might work.
Code:
interaction !change_npc_likes(char:MC, char:T)
    details "Cheat NPC", 0, 100, 20, "not_ai not_tired healthy"
    init {
        var $allow_it;
        set $allow_it = &have_relation(MC,T);
    }
    allow $allow_it;
    aiprob 0;
{
    # Set the stats
    &set_attr(T, "lewd", 100.0);
    # set the likes
    &set_like(T, "covered", -2);
    &set_like(T, "commando", 2);
}
Though as I also mentioned in my dm if I wanted to adjust a specific person's stats or likes I would just use the console. list p Name to get the ID, cheat set_like ID covered -2 to set the person's like, cheat set_attr ID lewd 100 to set the person's stats. You can also use list p to see every character in the game and dump p ID to see everything about the character. There's also some good documentation in the game files for making your own mods and all the stories and events in the game are viewable in the tfl files.
Hi thanks for the code, the set_attr work perfectly, but for some reason the set_like ones don't work. Any guesses what might be causing this?

Edit: Nvm, looks like it works.
 
Last edited:

EquineHung

Member
Mar 1, 2018
290
211
248
i have applied and iterated on this code it works fine

you need to learn an npc's opinion for it to show

for example I added &set_like(T, "fit", 2); and a girl who might not be attracted to the fit body will some attraction but it wouldn't show on her preview page
 
  • Like
Reactions: Sir_EatsALot

J_M

Member
Oct 8, 2017
173
195
148
Guys, is there a way to interrupt this investor set of events, please?... it bloody never ends and it's getting annoying...
 
  • Like
Reactions: monkeyqueen

HideyBird

Newbie
Nov 21, 2021
21
10
70
Potential bug: When meeting your biggest fan (the one that gives you sedative pills), if they introduce themselves to you, you can choose their image but if you introduce yourself to them, the image is locked
 

RandomGuy3141

New Member
Apr 5, 2022
7
5
127
I love the game and am adding some photos for my local copy. I'd love to see the game allow an unlimited number of photos for each pose and revealing level. Some models have a lot of great nude photos. It would be awesome if the game could randomly pick from these photos, which could add a lot of variety for each character.
 
3.70 star(s) 43 Votes