CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

leequiring

Member
Dec 12, 2018
295
186
that's kinda the process I follow. convince them to hate cheating (unless they are in a relationship I wanna break), convince them to like poliamory, then propose to be girlfriend. Like that I didn't have any issues with "caught cheating". But can't tell you for sure. Now, what I don't know if liking poliamory means they don't mind catching you with other official girlfriends but they will mind catching you with someone not in the poliamory...

And don't worry, it's a game and I think it's good to be able to have the fantasy that they all want to be exclusive to you while wanting you to be happy not being exclusive to them :D
As I have experienced it, they need to hate Cheating, love Polyamory, and then you can "cheat" freely with all other girlfriends, and none of them will cheat on you. Just don't be seen in public having sex with anyone else. The rumor mill (Little Secrets) will catch up with you.
 

leequiring

Member
Dec 12, 2018
295
186
It bears telling that I've been playing the game pretty much all day without shutting it down. No crashes so far. Fingers crossed.
 

Crel

Member
Jun 5, 2018
249
171
Anyone know why a woman might insist on dressing conservatively? City laws are at Expose Breasts level, and the woman in question Loves Revealing Clothes, Not Wearing Underwear, Public Nudity, Attention, and Taking Risks. She hates Conservative Clothes. Her Lewdness is 70

Yet for all that, she still only ever wears Rev 0 and 1 outfits, and I'm at a loss on what to do.
 
Last edited:

devil999LEXX

Member
Feb 5, 2021
185
61
I dont think you understood my posting then.

There is no structure in any of your postings. You make suggestions as you play along and not by seriously thinking and listing them in any ordered form. You state things about the difficulty of coding your input, without even having access the code itself. You ask how mechanics work or complain about them, just to fire a barrage of 'suggestions' a few minutes later. You are like my kids on a road trip on the backseat switching topics and themes every couple of minutes.

You dont appear to have understood all the ins and outs but make suggestions already. That is like being a novice that just learned what the pieces in chess do and then suggesting to change the rules 10 minutes later.
please, explain to me why acces to code is needed to state difficulty of coding input ?

post just under mine in which all this started, listed what he modded (and it was great improvment) without acces to code itself, just game files.
for that asking how mechanics work and sugesting changes, what is exactly bad about it ? dont hate new person who want to ride at bike to school, only because you walked there for years.
pls, pls, pls, expand which mine sugestion about mechanic in game will be worse for game.
 
  • Angry
Reactions: Kodex

devil999LEXX

Member
Feb 5, 2021
185
61
for game crashing in new version - 1.04 - game still crashes as regulary as before (my netbook have only 4GB ram), but positive change is that in in cca 50% of all cases it black screen needing complete restart, in other cases game will just crash or need to be manualy forced to close, and after it can be started again to continue playing. no restart needed.
improvment compared to previous version in which every crash needed restart of system.
 
Jul 18, 2023
61
37
In the case of lilfam's packs and mine, they're not AI at all, just edited out of actual photoshoots. So the "why" is because that's where there's material to work from.
Ahhhh Okay, that makes sense now, I just assumed that because game characters are AI generated yours were too, bit silly of me now that I think about it. Pictures in the public domain makes so much more sense , thank you for the answer and putting my naivety in check.
 

leequiring

Member
Dec 12, 2018
295
186
Ahhhh Okay, that makes sense now, I just assumed that because game characters are AI generated yours were too, bit silly of me now that I think about it. Pictures in the public domain makes so much more sense , thank you for the answer and putting my naivety in check.
It's not accurate to say those edited photos came from the "public domain". Copyright laws are ignored, but they are real.
 

TotalFluke

Member
Game Developer
Aug 24, 2021
306
663
For what I could find, it's on the couples.tfl file. line 429 (in my version, I'm not on the latest version but should be around there).
Seems it depends if she likes cheating and is submissive. You can try to raise those things (submissive if you don't want her cheating on you).

If (and it's a big IF) I understood the code right, and you want to always allow cheating i think commenting these two (#) in front of the line like this:

Code:
#set $ai_prob = 70 - &ai_likes::likes_cheating(A);

#set $ai_prob = 0 - &like_value(A,"submissive") * 10 + $ai_prob;
That disables the calculations taking into account those factors.
Then you can add:

Code:
set $ai_prob = 75;
That should set it always to 75 which is above 70 which should always return allow (I think).

Keep in mind, this is not exclusive to you, it will probably break a lot of things. you won't be able to create break ups, by enticing other people to cheat since their partners won't care either. This is just "yeah nobody cares about cheating anymore". I think it's better to just convince them to like poliamory and slowly build up your harem.
Ok, so that's interpretation is wrong and won't do what you want.

The code you quoted what it does is it calculates how much the actor (the character running the code, stored in variable A) likes cheating (as returned by the &ai_likes::likes_cheating function) which will be a value -100 to 100. So subtracting from 70, you get a value 170 to -30. This is the probability that they will run this action. The comment refers to 70 as a return value from likes_cheating, not the value in $ai_prob. If you set it to 75, it will set the probabilty to run this to 75% which you don't want. Set it to 0 if you don't want it to run. Or even better, on the details line above it, set the first value (currently 5) to 0. That makes it to never even run that code.

for game crashing in new version - 1.04 - game still crashes as regulary as before (my netbook have only 4GB ram), but positive change is that in in cca 50% of all cases it black screen needing complete restart, in other cases game will just crash or need to be manualy forced to close, and after it can be started again to continue playing. no restart needed.
improvment compared to previous version in which every crash needed restart of system.
After it crashes, look at the log file in C:\Users\<your name>\AppData\LocalLow\Total Fluke Studios\StripClubWars\Player.log and search for "Memory usage" (without the quotes). Then let me know what the last such entry looked like. That line will be written every 5 days or so and show the memory before and after doing some memory cleanup. It should go up each time as the game progresses there's more data, but it should be under control.

Try also putting this setting in the user_config.dat file:

image_cache_size int 50

That should set to keep a max of 50 images in memory (the default is 300) so that should lower your memory footprint.
 
  • Like
Reactions: busoni

busoni

Newbie
Mar 15, 2022
22
14
Ok, so that's interpretation is wrong and won't do what you want.

The code you quoted what it does is it calculates how much the actor (the character running the code, stored in variable A) likes cheating (as returned by the &ai_likes::likes_cheating function) which will be a value -100 to 100. So subtracting from 70, you get a value 170 to -30. This is the probability that they will run this action. The comment refers to 70 as a return value from likes_cheating, not the value in $ai_prob. If you set it to 75, it will set the probabilty to run this to 75% which you don't want. Set it to 0 if you don't want it to run. Or even better, on the details line above it, set the first value (currently 5) to 0. That makes it to never even run that code.
That's why one should never take candy (or code) from strangers :p
Sorry for the wrong information! My bad.
Not the first i got wrong, a couple of minus operations that ended up being positive and such come to mind. I think the energy drinks was something like it.

Good thing is not brain surgery and one can do trial and error ^_^
 

devil999LEXX

Member
Feb 5, 2021
185
61
i hope i did find coorect line regarding crashes

Memory usage before GC=114Mb after GC=111Mb

so, it dont look bad. mayby it is there conflict in memory with another program ?

and just one note regarding user_config.dat
i added this line
vauto_save_freq int 1
so i now know where was problem why game didnt autosaved (it was because added letter v), but this lead me to some guestion. it is posible to add some sort of checks to user config for unknown commands to prevent mistakes ?
 
Last edited:

MikeCool

Newbie
Jun 1, 2017
20
14
How do you convince someone to quit their job for sex work? Even if you've made them hate all other work and have a preference for sex work, entertainment work, and service work, you still can't persuade them to take a job at your strip club. Any help, please?
 

SilverFire

Member
Apr 28, 2017
106
18
You can ignore her, but she will keep pestering you until you join it. When you do, you'll get invited to meetings during which you and other members are brainwashed and their lewdness and good opinions go down. You will also be able to recruit others as well as donate money. Which helps you raise your standing with the club. Once it's high enough you can then challenge her to take over it and then you can work to undo the brainwashing of those members. This is the only way you as the character can raise the lewdness of other characters. Note that most characters will be reluctant to join. They will have to have low will. The higher it is, the harder it will be to get them to join. (Liking you and liking following orders also helps)

Can you please tell me exactly what the conditions are for recruiting someone into the cult? I`m already the leader of the cult. As far as i`ve understood, if a girl has willpower or lewdness >50 she will never join, no matter of any other modifiers? You said Liking you and liking following orders also helps. Does the opinion about faith or religion work or taking drugs also factor in? What else influences a person`s decision to join or not (abilities, skills, opinions, etc)?

And also, a few related questions:
1. If lewdness can only be increased in the cult meetings, how can i increase a persons lewdness that is already 50+ if she will always refuse to join the cult?
2. Can you please add the possibility to select my own schedule for the meetings, to host the meetings more often, maybe something like once every week or two weeks? I think an increase of 12 lewdness/year is a bit too little, and that is IF i get lucky enough to have the same person volunteer in each meeting of that year (yes i know i also have the option to select that person, with lower chance of positive results).
3. Can you please add the possibility to fire/dismiss someone from the cult? As a straight man, i really don`t want to see other dudes stripping when i ask for volunteers, i really don`t care about THEIR lewdness no matter how much i want to "deprogram" all the cult... :LOL:
4. While playing, when i was about to take over the leadership of the cult, i was given 2 options to do so, one being to simply confront her during a cult meeting and take over, and the second option was if some "accident" happened to her, but i was unable to discover how to do this. Can you please elaborate a bit on this second path?
 
Last edited:

Krew

Newbie
May 5, 2017
76
74
I think there is something borked with the current build 1.03a. Every club (mine included) are heavily in debt and losing money daily. There just isn't enough customers to pay for the wage of my almost cheapest bartender and cook (paying them $12.60 and $16 something respectively) let alone afford to buy refils for drinks and food.

My daily visits is 9 and my transactions 21. The other clubs are largely the same, or worse.

I know for a fact it's not suppose to be this way, because my last game on a previous version I pretty much hit max daily visitors not long after finishing my kitchen and hiring a cook.
 

leequiring

Member
Dec 12, 2018
295
186
How do you convince someone to quit their job for sex work? Even if you've made them hate all other work and have a preference for sex work, entertainment work, and service work, you still can't persuade them to take a job at your strip club. Any help, please?
If you are depending on enlisting the street walkers in order to add prostitutes, it's tricky. Getting them to be your friend/lover makes it easier, but they can't be persuaded while working. They are sometimes in your club, and you might do it there. Or at parties.
It's easiest to just groom singers/dancers/strippers.
 

SilverFire

Member
Apr 28, 2017
106
18
I think there is something borked with the current build 1.03a. Every club (mine included) are heavily in debt and losing money daily. There just isn't enough customers to pay for the wage of my almost cheapest bartender and cook (paying them $12.60 and $16 something respectively) let alone afford to buy refils for drinks and food.

My daily visits is 9 and my transactions 21. The other clubs are largely the same, or worse.

I know for a fact it's not suppose to be this way, because my last game on a previous version I pretty much hit max daily visitors not long after finishing my kitchen and hiring a cook.
The current version is 1.04, i advise to update your game. Did you edit or modify the game in any way or are you playing the standard game? How much ingame time has passed? In my game, i also had very few customers in the beginning, but it took off after a while, i guess somewhere after i reached 10k-20k points and 100+ fame. Also, what are the skills of your cook/bartender/waitress? You should train them up to 100. Also, (as i`ve understood from the tutorial), the most important is the lewdness stat, you want to hire people that have the highest lewdness, their professional skills (cooking, service, singing, etc) you can easily train those after you hire them.
 
Last edited:
  • Like
Reactions: TotalFluke

Krew

Newbie
May 5, 2017
76
74
The current version is 1.04, i advise to update your game. Did you edit or modify the game in any way or are you playing the standard game? How much ingame time has passed? In my game, i also had very few customers in the beginning, but it took off after a while, i guess somewhere after i reached 10k-20k points and 100+ points of fame. Also, what are the skills of your cook/bartender/waitress? You should train them up to 100.
I didn't notice the new version. I'll give it a shot.
But my employee skills are all maxed out at 100. I'm at 30k points and only 72 fame. Id be lucky if my fame goes up by 1 in a week. The other clubs are in a similar state.

And yeah, I am playing a modified file. But mostly to do with energy usage. So I can't see why that would influence it, as my previous (working) game had the same modifications.
 

tooldev

Active Member
Feb 9, 2018
719
659
Can you please tell me exactly what the conditions are for recruiting someone into the cult? I`m already the leader of the cult. As far as i`ve understood, if a girl has willpower or lewdness >50 she will never join, no matter of any other modifiers? You said Liking you and liking following orders also helps. Does the opinion about faith or religion work or taking drugs also factor in? What else influences a person`s decision to join or not (abilities, skills, opinions, etc)?

And also, a few related questions:
1. If lewdness can only be increased in the cult meetings, how can i increase a persons lewdness that is already 50+ if she will always refuse to join the cult?
2. Can you please add the possibility to host the meetings more often, maybe something like once every week or two weeks? I think an increase of 12 lewdness/year is a bit too little, and that is IF i get lucky enough to have the same person volunteer in each meeting of that year (yes i know i also have the option to select that person, with lower chance of positive results).
3. Can you please add the possibility to fire/dismiss someone from the cult? As a straight man, i really don`t want to see other dudes stripping when i ask for volunteers, i really don`t care about THEIR lewdness no matter how much i want to "deprogram" all the cult... :LOL:
4. While playing, when i was about to take over the leadership of the cult, i was given 2 options to do so, one being to simply confront her during a cult meeting and take over, and the second option was if some "accident" happened to her, but i was unable to discover how to do this. Can you please elaborate a bit on this second path?
All answers are based on observation only, so they might be faulty:

1. I believe there are actually 2 things that play into this. Openness and then lewdness. Less and less clothing etc will raise openness and allows for easier lewd activities in turn. Lewdness is an overall stat for clothing and activities as far as I am aware. The only part that really locks you with lewdness is certain jobs in clubs which have hard limits, but in terms of doing stuff with people my observation is, that you can get even people with low lewdness to have almost all activities. All you are missing out on with lewdness is how well someone can function for a specific job or if they qualify for it in the first place.
4. 'Accident' equals things like being beat up for example. Anything that seriously damages their health. Can be achieved by ignoring refusals in sex activities and just going for the rapy option. You better train a bit before doing this though :D
 
  • Like
Reactions: TotalFluke

SilverFire

Member
Apr 28, 2017
106
18
@Krew

Your fame seems a bit odd, when i had 30k points i already had over 200 fame. I now have 74k points and 577 fame, and is nov 10, 2024, just so you can make a comparison. Is your client satisfaction very low? Maybe you are selling very low quality food and drinks at a too high price? Did you already build the seating area or are just serving meals out of the kitchen?
 
3.80 star(s) 25 Votes