Tigerman500

Newbie
Feb 12, 2019
47
5
18
Exactly how you imagine you should. But the technical details to make them fit and the game engine to actually use them correctly is inside the docs folder.

Otherwise as you can see some images are simply grabbed over the internet, others used AI-generation. You can put in any images you want really if you follow the guide.
Thanks
 

ThiagoL0rD

New Member
Jun 16, 2024
13
1
22
You sure you enabled incest?
I found it yesterday in the game settings and removed it so it is not included, after that I was able to change some of them, one dropped from -100 to -38 and the other dropped from -100 to -89, but it is still complicated for them to accept other changes.
 

TotalFluke

Active Member
Game Developer
Aug 24, 2021
510
1,229
219
Discovered a hole in the logic. If you knock up the only current employee the medical clinic has she will turn up as a patient for her check up, but there will be no one on duty to act as the nurse so the appointment fails, Over and over and over., day after day after day.
You and 100 others... Hopefully the next version will have a fix for this. Don't get how the nurse is so easy to knock up.

That's unfortunate. i wish i could recall my coding eduction and help but.... tooo long ago and zero exp with unity beside some quick research about mem leak and unity. lol

If u need a test object , just tell me what data u need and i will provide it.
cause u game is awesome and it would be a shame to have this kind of "major" bug hinder folks from enjoying it*cheers
The challenge is that Unity and the C# language does passive garbage collection. There's no process for the dev to clear out memory objects. You have to rely on their garbage collection process. I actually call it every so often (every couple of days game days) just to be safe and I see it releasing memory. So I don't know what's the issue. As the game progresses, more memory is used, this is normal. But I haven't seen it get over 2GB.

If you want to help, after you play for a session that your memory got all used up, look at the game debug log (normally at C:\Users\<your name>\AppData\LocalLow\Total Fluke Studios\StripClubWars 2\Player.log and look for lines that begin with "Memory usage" which shows the current memory being used. I print this statement whenever I call the Unity garbage collection function. If you can search for those lines and see if there's a pattern, does it suddenly jump up or is more of a continuous thing. (I'm afraid that playing for long enough to create this issue will generate a log file that's too long but if you want to upload it somewhere I can take a look).


I have a question, in likes.txt there is a value called "is_addictive impacts", if i switch the value to Y will it make the opinion change the more a character is exposed to it, say for example recieving head or big dicks
No it doesn't work that way. The likes marked as addictive are those that are hard to bring down. For example, once someone likes smoking it will be difficult to make them like it less.

I found it yesterday in the game settings and removed it so it is not included, after that I was able to change some of them, one dropped from -100 to -38 and the other dropped from -100 to -89, but it is still complicated for them to accept other changes.
Well, that's progress. Again they need to like incest and then they have to be attracted to you. So what other people said still holds.

Hiring little sister ....


Any hints on what point?

She has a kid from me, I have 2 with her sister, I'm trying to be friends and get better with mother ....
You have to wait. At some point she will take a job as a stripper with a rival club. You can't hire her before then. After that, the other sister will get upset over it and ask that you do something about it. At that time you will be able to try to hire her away from the other club. But you have to wait for the 90 day cooldown period. Then you can offer her a job in your club. But it won't be easy. You have to make sure she likes you a lot and that she likes whatever job you are offering more than the one she already has. She usually has low greed, so money will typically not be enough to sway her.

Hint: to make like your club more, find the people she likes and hire them. For example, her roommate, if they get along.
 

yvla2704

New Member
Dec 5, 2018
7
4
157
Hi :) Does anyone have, or know how to get the acvanced family tree mod, for more family members ? Someone wanted to work on, and post it, but it never happened, or do I just missed it ? Who can help please ? Thank you :)))
 

Scheijian

Newbie
Jun 30, 2023
93
78
151
The challenge is that Unity and the C# language does passive garbage collection. There's no process for the dev to clear out memory objects. You have to rely on their garbage collection process. I actually call it every so often (every couple of days game days) just to be safe and I see it releasing memory. So I don't know what's the issue. As the game progresses, more memory is used, this is normal. But I haven't seen it get over 2GB.

If you want to help, after you play for a session that your memory got all used up, look at the game debug log (normally at C:\Users\<your name>\AppData\LocalLow\Total Fluke Studios\StripClubWars 2\Player.log and look for lines that begin with "Memory usage" which shows the current memory being used. I print this statement whenever I call the Unity garbage collection function. If you can search for those lines and see if there's a pattern, does it suddenly jump up or is more of a continuous thing. (I'm afraid that playing for long enough to create this issue will generate a log file that's too long but if you want to upload it somewhere I can take a look).
last game session with around 9Gb usage and only around 1h gameplay
were only a few lines from the GC, all very similar. since only some ig days played but with several intercourse

player.log


<< Memory usage before GC=251Mb after GC=221Mb >>
+/- ~10Mb variants to the other lines
-------------
[ALLOC_GFX_MAIN]
Peak usage frame count: [32.0 KB-64.0 KB]: 80 frames, [64.0 KB-128.0 KB]: 215 frames, [128.0 KB-256.0 KB]: 74 frames, [1.0 MB-2.0 MB]: 76 frames, [2.0 MB-4.0 MB]: 1 frames, [4.0 MB-8.0 MB]: 4187 frames, [8.0 MB-16.0 MB]: 592 frames, [16.0 MB-32.0 MB]: 885 frames, [32.0 MB-64.0 MB]: 779 frames, [64.0 MB-128.0 MB]: 2464 frames, [128.0 MB-256.0 MB]: 39717 frames, [256.0 MB-0.50 GB]: 26250 frames, [0.50 GB-1.00 GB]: 3074 frames, [1.00 GB-2.00 GB]: 73792 frames, [2.00 GB-4.00 GB]: 104390 frames, [4.00 GB-8.00 GB]: 257118 frames, [8.00 GB-16.00 GB]: 114646 frames
Requested Block Size 16.0 MB
Peak Block count 537
Peak Allocated memory 9.22 GB
Peak Large allocation bytes 0.89 GB
--------------
saw this block only after i checked a 2nd log and the peak allocated mem size took my attention. ...

This discrepancy looks more like a problem that GC cannot fix, or rather, is not made/allowed to fix.

found this reddit post very interesting bout that topping, donno if u know it but mabye something helpful



p.s just found in winlogs the last hard crash
26640678912 bytes used StripClubWars 2.exe ...around 24GB
 
Last edited:
  • Like
Reactions: TotalFluke

webrider

Newbie
May 25, 2018
67
25
177
Any way to demolish a room in your club and build a different room? Can you talk to your neighbors in your house? Can you get another house is there only one? How do you raise the first number 10/100 the second number you can get that up by getting them to like your physical traits but the first number is what ... constant attention?
 

Frankston

Member
Feb 4, 2020
137
75
193
Any way to demolish a room in your club and build a different room? Can you talk to your neighbors in your house? Can you get another house is there only one? How do you raise the first number 10/100 the second number you can get that up by getting them to like your physical traits but the first number is what ... constant attention?
No, there's no way to remove or delete a room once it's built, the most you can do is change it to a different room through save editing. Yea you can talk to your neighbors, no you can only get 1 house and that's the apartment. The first number is Opinion and the 2nd one is Attraction.
 

THEET

Newbie
Dec 5, 2022
18
62
57
(TEA) Well, I'll write down the type and body shape type that I like using the images I liked as an example:
tea-00016, tea-00002, tea-00013, and
tea-00036, tea-00004 - It would be great to see them (and with the same body shape type), only they are between 20 and 30 years old (I especially want to see her like this tea-00036)
You don't have permission to view the spoiler content. Log in or register now.


(SCW) The body type and body shape type I like using the images I liked as an example:
scw-00015, scw-00036,
scw-00107 (it would be great if the hair was blonde instead of blue),
scw-00414 (it would be great if the hair was long),
scw-00243 (it would be great if could remove the protruding belly here),
You don't have permission to view the spoiler content. Log in or register now.

:love:I liked all of these images (I just wrote down what would be ideal for me).
just so i get it right 20-30 curvy/volptuos,hour glass bodyshape,light skin, light hair,large breast, natrual breast, and a fluffy kind of hair cut?
 
  • Like
Reactions: J1215

J1215

Engaged Member
Dec 15, 2019
2,136
4,841
458
just so i get it right 20-30 curvy/volptuos,hour glass bodyshape,light skin, light hair,large breast, natrual breast, and a fluffy kind of hair cut?
:love:Yes, I like that! (+tall girl)
I like long hair. And the hairstyle can be long light blonde hair in a fluffy hairstyle or long light blonde hair in a Puffy high half up half down ponytail hairstyle.
Confident girl, possibly a leather outfit and makeup
 
Last edited:

abaddon3000

Newbie
Feb 8, 2020
18
8
13
a few issues.

1. after some point i can't reassign or hire girls directly to singer or dancer jobs but rather have to allocate them to stripper first before the dancer/singer options become available. is this deliberate or will it be fixed at some point. it's a particular problem with girls who don't have sufficient lewdness for stripper. worked around it for an existing employee by temporarily editing their saved lewdness
2. i got into trouble with the city inspector for girls giving handjobs in the massage rooms even after prostitution was legalised
3. threesomes usually say they're scheduled at night in the text, are scheduled in the calendar during the day, but actually occur at night
4. getting a check up always results in them telling me i have an illness
that i should come back to get treated every few days. i'm not allowed another checkup for a month though so I'm not sure what I'm supposed to do about this if anything

really fun game so far
 
Last edited:

Ennoch

Conversation Conqueror
Donor
Respected User
Oct 10, 2017
7,952
24,347
913
just so i get it right 20-30 curvy/volptuos,hour glass bodyshape,light skin, light hair,large breast, natrual breast, and a fluffy kind of hair cut?
Since you mentioned if anyone has a wish..
Yeah i have..
MOAR!

Now that's out of my system, my question would be can we expect more such packs? Are you intend to expend tea? I reeeally love these AI-generations, for me, your pack is by far the best.
 

HRF94

Member
Oct 13, 2023
177
104
118
and then they have to be attracted to you. So what other people said still holds.
- how can I increase attraction from certain characters? (how can I make characters more attracted to me ;) )

- I found the snowflake, but I have no clue how to start her quest or what to do...

- your UI is attrocious ;)
 

hehasnoname

Newbie
Dec 20, 2020
15
14
167
I have he mother has been introduced to the game... but nothing for 100+ days. Is there a trigger that brings her back?
 

Saltheart

Newbie
Sep 2, 2017
75
39
200
"Welcome back to another episode of the Wild & Wacky World of WTF?!" Ha!
While I do have a couple saves of legitimate game-play, I also like to cheat the hell outta things - just to see what happens.

My recent adventure had me as 50+ straight male with over 9mm in cash. I deliberately waited until June before I opened the doors to allow the competition some leeway (and accrue additional spawns) before I shredded them.
Started with a single bar, storage++, lounge, 4 lockers, 2 seating, 4 dressing, private and 10 sexrooms (no kitchen). 1 tender, 2 janitors. Tweaked the laws up to prostitution allowed, and posted 'hiring sex workers'.

Hokey smokes Bulwinkle... I had sluts screaming for work HA! It was wild :D
Too much fun - I may let this experiment run a little longer than I usually do.
 

Scheijian

Newbie
Jun 30, 2023
93
78
151
"

My recent adventure had me as 50+ straight male with over 9mm in cash.
pffft noob.
make a club with only adonis guys dancing&stripping ( ofc all 100% gay ) and be the only straight guy in the club..
cash rolling in from all the horny milfs and u balls are all day dry :cool:
 
  • Like
Reactions: Crosse

Saltheart

Newbie
Sep 2, 2017
75
39
200
I had attempted similar scenarios to what you've suggested during my numerous experiments, but simply found it not all that appealing to me. Forging ahead to more conquests!
 
3.70 star(s) 43 Votes