What would you like me to add to the game in the next update?

  • The connection (police) mechanic. This would be a new "currency" and a new batch of upgrades.

  • More events and the possiblity for the packmakers to add some in their packs.

  • The possbility to train the skills of the girls

  • Progress the story and add story missions (mostly focused on Nicole)

  • Something else (tell me either by PM or in this thread).


Results are only viewable after voting.

Disgruntler

Well-Known Member
Game Developer
May 2, 2021
1,059
1,141
229
Small thing, the unmute buttons for the bottom booths in in the video of the top booths and the third booths unmute button doesn't unmute, it zooms in.
Probably an overlay issue, it's an easy adjustment when I get the time.

Also, I'll include a dampening of the background music during the zoom mode, it's an oversight given I had to rebuild it from scratch.
 

ChubberLang

Member
Oct 1, 2017
129
270
287
Doing a quick early check. When starting the game (New Classic) from startup it kicks me to Nicole's screen but the Date Her option and Wardrobe are all available and she's at 100000 Nicole Points. None of the Missions are accessible. Restarting again from the Main Menu resets everything and solves the problem, so really an issue only for the first time players.

Also, if you haven't bought the dance policy, The Back to Work Planning button on the staff screen doesn't work (presumably because you can't plan work yet). Not a huge deal but it can lock someone in the staff screen requiring them to escape out to go to the main menu.

I did my usual rehiring of girls to check and a couple still don't have specialties in Classic (don't know if you attempted to fix this yet or not). Just hired 4 in the newest game and 3 of 4 didn't have specialties.

Now all that said, that new Zoom function is FANTASTIC. Way better than the previous version. Just some tremendous work there. Easy to swap, easy to continue playing. Can play the whole round zoomed practically and swap as necessary. Really strengthens the porn part of the porn game. Great job.
 
Last edited:

mgunner2010

Member
Dec 9, 2020
185
66
38
Question on the mechanics behind the Theme Night gained by the Investors. Which ones of the descriptors does this pick up, so far I have identified hair color and bust size? Wanting to know because this now puts relevance on what was just an aesthetic part of the JSON file and I am going through and "cleaning" up some JSON's to make them more relevant to the game and to actually match the girls involved. Also, I had asked CaptC just a second ago because I had thought it just not take up space in the forum but I guess it should, how should the string value be entered to "show up" in the game in the descriptor part of the JSON? Should it all be capitalized, should the first letter be capitalized, and what words does the descriptor part actually pick up to be shown in-game ie. should it be specifically worded?
 

ThroneAweigh

Newbie
Aug 7, 2018
65
128
183
Question on the mechanics behind the Theme Night gained by the Investors. Which ones of the descriptors does this pick up, so far I have identified hair color and bust size? Wanting to know because this now puts relevance on what was just an aesthetic part of the JSON file and I am going through and "cleaning" up some JSON's to make them more relevant to the game and to actually match the girls involved. Also, I had asked CaptC just a second ago because I had thought it just not take up space in the forum but I guess it should, how should the string value be entered to "show up" in the game in the descriptor part of the JSON? Should it all be capitalized, should the first letter be capitalized, and what words does the descriptor part actually pick up to be shown in-game ie. should it be specifically worded?
As far as I can tell it's based on a shared trait among all the girls. So bust size, hair color, body type, complexion, and maybe eye color?
 

Disgruntler

Well-Known Member
Game Developer
May 2, 2021
1,059
1,141
229
Question on the mechanics behind the Theme Night gained by the Investors. Which ones of the descriptors does this pick up, so far I have identified hair color and bust size? Wanting to know because this now puts relevance on what was just an aesthetic part of the JSON file and I am going through and "cleaning" up some JSON's to make them more relevant to the game and to actually match the girls involved. Also, I had asked CaptC just a second ago because I had thought it just not take up space in the forum but I guess it should, how should the string value be entered to "show up" in the game in the descriptor part of the JSON? Should it all be capitalized, should the first letter be capitalized, and what words does the descriptor part actually pick up to be shown in-game ie. should it be specifically worded?
Excellent questions, and I'll cover them as best as they can.

1) Which ones of the descriptors does this pick up?

bustType, hairColor, and bodyType.

2) How should the string value be entered to "show up"?

So, first thing I want to mention is that this matters to the Brokers as well, and always has. The Brokers randomly generate a preference and each matching attribute of the five (bustType, hairColor, bodyType, skinComplexion, and eyeColor) contributes one star to their total rating on how pleased the Broker is with them. So this already did matter.

The values the game recognizes are:

BustType
{ TINY, SMALL, MEDIUM, BIG, VERY_BIG }

EyeColor
{ BLACK, BROWN, BLUE, GREEN, HAZEL }

HairColor
{ BLACK, BRUNETTE, BLOND, RED }

BodyType
{ PETITE, ATHLETIC, AVERAGE, VOLUPTUOUS, THICK }

SkinComplexion
{ LIGHT, OLIVE, DARK }

For best results, have your entry capitalized, however I believe typecasting in Unity's C# script is smart enough to catch lower case in the string value (though NOT in the title of the field.)

Alternatively, you can do:

"SkinComplexion": 1,

(starting capital intentional) as an entry which would set skinComplexion to Olive (as the lists always start with 0)

So, the system will recognize either:

"skinComplexion": "OLIVE",
or
"SkinComplexion": 1
 

ChubberLang

Member
Oct 1, 2017
129
270
287
Wanting to know because this now puts relevance on what was just an aesthetic part of the JSON file and I am going through and "cleaning" up some JSON's to make them more relevant to the game and to actually match the girls involved. Also, I had asked CaptC just a second ago because I had thought it just not take up space in the forum but I guess it should, how should the string value be entered to "show up" in the game in the descriptor part of the JSON?
You can read the above and do it manually. Alternatively you can do this the super easy way: Download this app and then select the options in the dropdown menu.

Also I never noticed before but you are not wrong about a large amount of packs having unrecognized variables. Going through my packs, I just saw a girl whose eye color was listed as "various".
 
Last edited:
  • Like
Reactions: mgunner2010

michiforever

New Member
May 10, 2020
7
0
166
I realised that the Investor with the ultimate benefit "Why It's called a savings account" is giving 10% of the spare money on top. I think that can be a little bit extreme, especially on the later stages on the game. Maybe it is possible to reduce the effect the more money you have. If i have a Million spare for example, i will get 100k out of nothing and in my opinion that disrupts the balance of the game to a certain degree.
 

mgunner2010

Member
Dec 9, 2020
185
66
38
I realised that the Investor with the ultimate benefit "Why It's called a savings account" is giving 10% of the spare money on top. I think that can be a little bit extreme, especially on the later stages on the game. Maybe it is possible to reduce the effect the more money you have. If i have a Million spare for example, i will get 100k out of nothing and in my opinion that disrupts the balance of the game to a certain degree.
Actually if you think about, if you have a million spare what is 100k really? Lol
 

mgunner2010

Member
Dec 9, 2020
185
66
38
You can read the above and do it manually. Alternatively you can do this the super easy way: Download this app and then select the options in the dropdown menu.

Also I never noticed before but you are not wrong about a large amount of packs having unrecognized variables. Going through my packs, I just saw a girl whose eye color was listed as "various".
Thanks, I actually picked that up yesterday and fooled around with it a little. I did see the area to modify the JSON attributes and check videos and will definitely be using that! Good looking out!
 
  • Like
Reactions: ChubberLang

Disgruntler

Well-Known Member
Game Developer
May 2, 2021
1,059
1,141
229
I realised that the Investor with the ultimate benefit "Why It's called a savings account" is giving 10% of the spare money on top. I think that can be a little bit extreme, especially on the later stages on the game. Maybe it is possible to reduce the effect the more money you have. If i have a Million spare for example, i will get 100k out of nothing and in my opinion that disrupts the balance of the game to a certain degree.
Meanwhile my plan is to figure out a way to buff it.
 

Disgruntler

Well-Known Member
Game Developer
May 2, 2021
1,059
1,141
229
Back on topic, looking to fix the 100000 nicole points bug. Something isn't initializing right.
 
4.40 star(s) 48 Votes