Not YrBroom

Member
Feb 9, 2023
200
245
134
I just uploaded version 3 of the Daphne image set, which now includes pregnant images for all women under 50 in it.
Thanks! FYI there is one under-50 set that's missing pregnant images (scw-00365).

Also, the first post still has links to the v3 Megapack. There's a newer/more complete one, although it's also now a bit out of date.
 

Dnds

Crimson Coffee Cake
Donor
Jul 5, 2017
367
449
284
Can we chance event chances by changing files? I haven't been able to find it.
 

SirCumalot

New Member
Jan 30, 2018
5
0
32
Not sure if this is a bug, or a stat of the person I'm supposed to change but I'm not getting any option to give offer a job after the interview.
I have enough space for new employees(I fired one of my sex workers the day before) and I have the sex worker position as an active job ad. The person is interested in the position, has a good opinion of me during the interview and does all the tests.

Anyone know what's up?

Screenshot_20250515_153856.png

Screenshot_20250515_153943.png
 

EquineHung

Member
Mar 1, 2018
290
211
248
Yo
jeaquedamez
sorry I bug you all the time
I figured from your code how to create separate command
and I want to add more
but currently how I figured out is just adding more and more interactions
Screenshot 2025-05-15 182016.png


I was hoping to structure a menu that adds an archetype
but I don't understand code enough to apply it I was hoping
for A nudge in the right direction
I want to apply this code for example

Code:
interaction !change_npc_likes(char:MC, char:T)
    details "Enslave 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_attr(T, "greed", 75.0);
    &set_attr(T, "will", -75.0);
    &set_attr(T, "happy", 100.0);
    &set_attr(T, "cour", 100.0);
    # set the likes
    &set_like(T, "prostitution", 2);
    &set_like(T, "rough_sex", 2);
    &set_like(T, "sex_work", 2);
    &set_like(T, "faith", -2);
    &set_like(T, "following", 2);
    &set_like(T, "leadership", -2);
    &set_like(T, "risk_taking", 2);
    &set_like(T, "no_debts ", 2);
    &set_like(T, "gambling", 2);
    &set_like(T, "games ", 2);
    &set_like(T, "rape", 2);
    &set_like(T, "submissive", 2);
    &set_like(T, "dominant", -2);
    
}
into a menu similar to this

Screenshot 2025-05-15 182232.png
 

DyreMezza

Member
Jul 29, 2018
138
137
183
Not sure if this is a bug, or a stat of the person I'm supposed to change but I'm not getting any option to give offer a job after the interview.
I have enough space for new employees(I fired one of my sex workers the day before) and I have the sex worker position as an active job ad. The person is interested in the position, has a good opinion of me during the interview and does all the tests.

Anyone know what's up?

View attachment 4840899

View attachment 4840900
I had few times where women told they were interested in the stripper or sexworker job and also said no after the interview.
Turns out(after little research) their lewd stat or other stats were not high enough to begin with.
Not sure why they show interest in these jobs...like they want to try something new but get cold feet lol
 

TotalFluke

Active Member
Game Developer
Aug 24, 2021
524
1,265
219
Thanks! FYI there is one under-50 set that's missing pregnant images (scw-00365).

Also, the first post still has links to the v3 Megapack. There's a newer/more complete one, although it's also now a bit out of date. Mega
Yeah. That one was left out because she's from the back (and already fat) so any attempts to change one of the existing images to show her as pregnant didn't make any changes at all. With some other ones from the back I would have massaged it to turn the body around a bit, but in this case I couldn't make it work because her face was just a profile and any attempts to have the AI generate a new face from half it didn't work right. I spent way too much time on it and finally gave up. I thought about redoing it from scratch but had spent so much time on it already that didn't feel like doing it.

Can we chance event chances by changing files? I haven't been able to find it.
No idea what this means.

Yo
jeaquedamez
sorry I bug you all the time
I figured from your code how to create separate command
and I want to add more
but currently how I figured out is just adding more and more interactions
View attachment 4841141


I was hoping to structure a menu that adds an archetype
but I don't understand code enough to apply it I was hoping
for A nudge in the right direction
I want to apply this code for example

Code:
interaction !change_npc_likes(char:MC, char:T)
    details "Enslave 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_attr(T, "greed", 75.0);
    &set_attr(T, "will", -75.0);
    &set_attr(T, "happy", 100.0);
    &set_attr(T, "cour", 100.0);
    # set the likes
    &set_like(T, "prostitution", 2);
    &set_like(T, "rough_sex", 2);
    &set_like(T, "sex_work", 2);
    &set_like(T, "faith", -2);
    &set_like(T, "following", 2);
    &set_like(T, "leadership", -2);
    &set_like(T, "risk_taking", 2);
    &set_like(T, "no_debts ", 2);
    &set_like(T, "gambling", 2);
    &set_like(T, "games ", 2);
    &set_like(T, "rape", 2);
    &set_like(T, "submissive", 2);
    &set_like(T, "dominant", -2);
   
}
into a menu similar to this

View attachment 4841173
So that's one of the hardest things to do, unfortunately. That particular example is on the owner_actions/sway_commish.tfl file around like 225.

You first need to get the options you want to show. If they are fixed (i.e. you will show the same options every time, it's easier, but I assume you want to show a different set each time). In this example we get the list in an array from a built in function but we need to move them to different variable names to be able to show them because the "choice" statements can't reference the strings from an array. Like this:

You don't have permission to view the spoiler content. Log in or register now.

You can use the weights ($law_aff[]) as an array, but the strings have to be scalars.

Hope that helps!


I had few times where women told they were interested in the stripper or sexworker job and also said no after the interview.
Turns out(after little research) their lewd stat or other stats were not high enough to begin with.
Not sure why they show interest in these jobs...like they want to try something new but get cold feet lol
That's it. You can always give someone a different job, which is why the game lets you interview someone for a position they are not qualified. (Qualifications are both strict, like age/gender or whether they will not be able to do it, like not lewd enough).

can someone send a discord link that doesn't expire?


That should last a week. I think to get the ones that don't expire you have to pay. I also thought that you could request an invite by accessing the discord site.
 
  • Like
Reactions: Dnds

Dnds

Crimson Coffee Cake
Donor
Jul 5, 2017
367
449
284
Yeah. That one was left out because she's from the back (and already fat) so any attempts to change one of the existing images to show her as pregnant didn't make any changes at all. With some other ones from the back I would have massaged it to turn the body around a bit, but in this case I couldn't make it work because her face was just a profile and any attempts to have the AI generate a new face from half it didn't work right. I spent way too much time on it and finally gave up. I thought about redoing it from scratch but had spent so much time on it already that didn't feel like doing it.



No idea what this means.



So that's one of the hardest things to do, unfortunately. That particular example is on the owner_actions/sway_commish.tfl file around like 225.

You first need to get the options you want to show. If they are fixed (i.e. you will show the same options every time, it's easier, but I assume you want to show a different set each time). In this example we get the list in an array from a built in function but we need to move them to different variable names to be able to show them because the "choice" statements can't reference the strings from an array. Like this:

You don't have permission to view the spoiler content. Log in or register now.

You can use the weights ($law_aff[]) as an array, but the strings have to be scalars.

Hope that helps!




That's it. You can always give someone a different job, which is why the game lets you interview someone for a position they are not qualified. (Qualifications are both strict, like age/gender or whether they will not be able to do it, like not lewd enough).





That should last a week. I think to get the ones that don't expire you have to pay. I also thought that you could request an invite by accessing the discord site.
I checked some of the things that can happen in the file and still haven't seen some of them. Was wondering if there was a way I could boost the chance of them happening. IE: When gambling with other people, they always ask for money.
 
Last edited:

Jackblack109

Newbie
Sep 11, 2022
54
27
127
I have a question, can you get married in the game? There's a marriage topic, but I haven't seen an action to get married.
 

Gabeen

New Member
Aug 10, 2019
14
9
158
Thanks! FYI there is one under-50 set that's missing pregnant images (scw-00365).

Also, the first post still has links to the v3 Megapack. There's a newer/more complete one, although it's also now a bit out of date. Mega
can this be uploaded to some other hosting site?
 

warpspasm128

Newbie
Apr 13, 2020
17
25
79
The option to bet for an NPC to take any job you offer them seems to be a lot weaker than it should be. I'm pretty heavily in debt in my current game, although finally in positive cash flow and starting to climb out, but nobody will take a job offer even if I beat them at gambling and get them to bet that they would.
 
  • Like
Reactions: JamTart

JamTart

Member
Nov 23, 2023
136
98
106
The option to bet for an NPC to take any job you offer them seems to be a lot weaker than it should be. I'm pretty heavily in debt in my current game, although finally in positive cash flow and starting to climb out, but nobody will take a job offer even if I beat them at gambling and get them to bet that they would.
I've had not one single person take a job offer after beating them at gambling. The problem is the "Reasonable" part. If someone loses a bet, they shouldn't have a choice of what job I offer them, they should take it. The only "Reasonable" reason they could refuse is if they can't legally do the job.
 

TotalFluke

Active Member
Game Developer
Aug 24, 2021
524
1,265
219
I've had not one single person take a job offer after beating them at gambling. The problem is the "Reasonable" part. If someone loses a bet, they shouldn't have a choice of what job I offer them, they should take it. The only "Reasonable" reason they could refuse is if they can't legally do the job.
When that happens and you offer then a job, you will get two options for salaries. One is a very low salary and another is the low reasonable salary. If you want to push it for the low salary, then they can take it, ask for more money or decline it. But the conditions of the bet was that they will have to take a job you offer them for a reasonable salary which essentially is 10% below what they deserve. That's the deal. If you want to be able to get them to work for you for a minimal salary, then have them become your slave.

But the point of this bet is not so much the money savings but to get someone to fill a hard to fill job for you. Once you hire them if you keep them happy they can work for you for below market rate forever.
 
  • Like
Reactions: JamTart
May 23, 2023
267
185
119
A couple of possible bugs.

1) If you send a nude selfie to someone the opinion gain for no response is the same as for "OMG! That is so hot!"

2) When at an event if you select "Mingle with guests" followed by "I don't want to mingle with any of these people" you still mingle - albeit without getting to select the initial character or action - but time doesn't progress to the next period.
 
3.60 star(s) 44 Votes