Ex_Pride

Newbie
Dec 18, 2019
37
33
guys, about the new update on pregmod one( 0.10.7.1-4.0.0-alpha.32 )...
" slave generation can now be seeded "
where can I modify slaves' seeds?
i rummaged through cheat mode and dev mode but found nothing
 

zzczys

Active Member
Jul 20, 2019
911
186
guys, about the new update on pregmod one( 0.10.7.1-4.0.0-alpha.32 )...
" slave generation can now be seeded "
where can I modify slaves' seeds?
i rummaged through cheat mode and dev mode but found nothing
You can sign up on git to post your question there, or on reddit


I hope this link is allowed, its not malicious, its a real reddit for FC

================

Found using notepad++
\fc-pregmod-pregmod-master\src\npc\generate\generateNewSlaveJS.js
 
Last edited:

Ex_Pride

Newbie
Dec 18, 2019
37
33
guys, about the new update on pregmod one( 0.10.7.1-4.0.0-alpha.32 )...
" slave generation can now be seeded "
where can I modify slaves' seeds?
You can sign up on git to post your question there, or on reddit


I hope this link is allowed, its not malicious, its a real reddit for FC

================

Found using notepad++
\fc-pregmod-pregmod-master\src\npc\generate\generateNewSlaveJS.js
thanks! figured the rest of it!
 

DERDER22

New Member
Sep 11, 2021
4
8
Here are my rules.
Ok to make sure I get you problem correctly you are trying break slaves just enough to get them to work, the problem is that devotion 20 is to high to just get slaves to work to do that it is enough for them to be either Frightened or Ambivalent the values for those can be found in the Help section but they are less then -20 trust and more then -20 devotion respectively.
Check a few post ups for an example of rules that should work but withe your current rules you need to add two rules before 1-Break, first one that checks for less then -20 Devotion or more then -20 Trust and the second one checking for if devotion is between -20 and 20 or if fear is below -20, that should solve the issue.
 

scrumbles

Well-Known Member
Jan 12, 2019
1,157
1,302
What can I use instead of devotion to catch the output from the cellblock (And new slaves just fearful enough to not need it) properly?
Unless I am mistaken, the Cellblock will automatically expel slaves that meet one of these conditions:
  • devotion >= -20 AND trust < -50
  • (-50 <= devotion < -20) AND trust < -20
  • trust < -50
I can suggest you two possible solutions.

Solution #1
You could force the cellblock to accept slaves with higher devotion. Open in a text editor the file:
Code:
src\facilities\cellblock\cellblockFramework.js
find the string App.Entity.Facilities.CellblockJob, replace -20 with +20 a few lines below (where it says slave.devotion >= -20), then recompile the game.
Edit: there will still be slaves who cannot be moved to the cellblock though, because of their trust.

Solution #2
You could create a twin rule 1+ - Break for slaves whose devotion is 20 or lower, but who cannot be sent to the Cellblock. For instance, their new job could be just "Confinement" (basically it works like Cellblock, except that the slaves stay in the Penthouse).
Duplicate rule 1 - Break, switch to advanced mode, drag a "Custom Getter" onto the grey rectangle, and paste this condition:
Code:
c => App.Entity.facilities.cellblock.canHostSlave(c.slave).length>0
When true, it means that a slave cannot benefit from the cellblock, either because too terrified (trust < -50) or because not defiant enough.

cellblock.png

P.S. To send Ambivalent slaves that can benefit from School to the Schoolroom I use "And slave education < 30" but I've yet to get that to work.
No clues, I tested it with a slave and it worked. The only issue I can see is that "2+ - School" is partly overruled by rules 3 and 4 if the devotion is 50+, but as long as slave.intelligenceImplant (Education) is lower than 30, the slave should be sent to the school.
 
Last edited:
  • Like
Reactions: JungleNuts

Christ P Bacon

Active Member
Jul 4, 2018
701
775
I assume you are using the inbuilt browser FChost.

View attachment 3814467

Observe the console, below the 'display changed variables'

The variable you want is V.RIEPerWeek

View attachment 3814477

In this example I am attempting to change the number to 4, its currently 3
Click 'run custom function' to execute

End week and proceed up to the Random Individual Events

View attachment 3814485

I now have 4 RIE events
Just checked the gitgud and the variable name is still the same.
===============
Use notepad++(Free to use) to search and edit.
Search for the text in options 'Maximum random slave events per week' using notepad++ Find in files function

View attachment 3814498

I used another phrase to find it, but you should get the idea.

==============
You will have to repeat these steps each time you update the game. That is why I recommend learning the game code and git functionality, with those in hand you can create your own branch with your own edits while also staying updated.
how do you have a lot of apartement slot?
 

zzczys

Active Member
Jul 20, 2019
911
186
how do you have a lot of apartement slot?
:devilish: Once you learn git functions, and the js code used for the game, you can make your own edits on your git branch while staying updated to the main branch. Unfortunately I am stuck on a very old version of pregmod since I cant really figure out how to reconcile git's new security features with the git gui I use.
 
Mar 9, 2023
144
42
Is anyone else having an issue with Eugenics societies not being able to let slaves choose their own chastity but societies without Eugenics are able to? In the git issue I opened, the devs said the opposite should be true. (Unfortunately, they didn't seem to recognize the problem I was having...)
 

scrumbles

Well-Known Member
Jan 12, 2019
1,157
1,302
Is anyone else having an issue with Eugenics societies not being able to let slaves choose their own chastity but societies without Eugenics are able to? In the git issue I opened, the devs said the opposite should be true. (Unfortunately, they didn't seem to recognize the problem I was having...)
I see, the options "Choose own chastity | Revoke choosing own chastity" should only be available in a Eugenics society, while the opposite happens.
It's just a typo, I think. Open the file src\interaction\siWardrobe.js in a text editor, go to line 705, and insert an exclamation point before FutureSocieties.isActive. The new line should look like that (except for the leading tabs):
Code:
if (object && object.fs && object.fs.unlocks && !FutureSocieties.isActive(object.fs.unlocks)) { // Really simple requirements check here since FS is the only way to unlock chastity options
Save and recompile the game. If it works, please update your issue on git.
 
Mar 9, 2023
144
42
I see, the options "Choose own chastity | Revoke choosing own chastity" should only be available in a Eugenics society, while the opposite happens.
It's just a typo, I think. Open the file src\interaction\siWardrobe.js in a text editor, go to line 705, and insert an exclamation point before FutureSocieties.isActive. The new line should look like that (except for the leading tabs):
Code:
if (object && object.fs && object.fs.unlocks && !FutureSocieties.isActive(object.fs.unlocks)) { // Really simple requirements check here since FS is the only way to unlock chastity options
Save and recompile the game. If it works, please update your issue on git.
After sending a reminder comment, Pregmodder got back to me with a fix. Thanks for responding, though.
 
  • Like
Reactions: scrumbles

MilesKiyaAnny

Well-Known Member
Jan 18, 2019
1,525
434
Hm been ages but I guess people still active here with recent pregmod version hmm I want to come back but like i want to play with only highest prestige possible slaves but not quite sure bout it. I remember I got one from porn star, Commander and being headgirl. Is that all?? are there fast way beside cheat girl stats??
 
Apr 23, 2022
143
86
Hm been ages but I guess people still active here with recent pregmod version hmm I want to come back but like i want to play with only highest prestige possible slaves but not quite sure bout it. I remember I got one from porn star, Commander and being headgirl. Is that all?? are there fast way beside cheat girl stats??
If you're asking about ways to add prestige to your girls, then there:
Lvl 3 - only the inventor event (requires hyperpreg content, as well as a bunch of stat checks and RNG over several events)
Lvl 2 - an event for former sisters of liberty or anti-slavery activists with high devotion and trust, RNG involved.
Lvl 1 - numerous ways, including: high whoring skill and working in brothel; high entertainment and working in club; bodyguard event with a drunk; head girl randomly over time.
 
  • Like
Reactions: MilesKiyaAnny

GammaXai

Active Member
Oct 5, 2018
631
328
Hm been ages but I guess people still active here with recent pregmod version hmm I want to come back but like i want to play with only highest prestige possible slaves but not quite sure bout it. I remember I got one from porn star, Commander and being headgirl. Is that all?? are there fast way beside cheat girl stats??
There is cheat mode for in game cheat menu or the web console to edit game variables including prestige level.
 
  • Like
Reactions: MilesKiyaAnny

zzczys

Active Member
Jul 20, 2019
911
186
Please remember that porn prestige and prestige are different. However both add passive rep gain, earnings for whoring and also sale value.

For porn prestige, only 1 slave can reach 3/porn star in a category, all the others will be limited to porn slut/level 2. Porn amateur is of course level 1. Porn prestige comes from the media hub, and depends on weather you allow it for slaves. Porn prestige does increase prestige but slowly.

Prestige has 3 flavors in increasing value, Prestigious, Very Prestigious, Extremely Prestigious and comes from numerous sources;

Prestige slave auction - all have either level 1 or 2
Kidnapping royalty from the event - pretty sure the queen is 2, while the others are 1
Elite takeover event, only for Eugenics FS, and if you consistently annoy the Elite class long enough to trigger the event. Mostly all of the enslaved survivors are 2 but very rarely you can get one that is 3.
Some of the other slaveowner stock have prestige.
Many more events.
 

MilesKiyaAnny

Well-Known Member
Jan 18, 2019
1,525
434
thx gang. guess it poop i will ditch it and play however i like when game finally got more end game or mooore content to slave soo gonna play later when end game stuff is a thing. Wonder if it is possible to like add a gobal map or something and expand our city stuff like Paradox game stuff but probably impossible
 
Last edited:

buffman101

New Member
Apr 30, 2022
10
6
Been using AI gen in this game for months, pretty sure it doesn't care what type of checkpoint you're using. Pony, XL, SD, Free Cities will just toss the prompts in and use whatever picture the AI throws back. Just a matter of trying checkpoints and seeing which ones give results the player likes. I got a whole list of checkpoints I've tried and their observed results. Very very few have been total failures.
Is there a tutorial or anything that teaches us how to use the AI gen? I already use Stable Diffusion but do I have to install/configure it all from scratch again to link it with this game? Any advice would be appreciated!
 
4.40 star(s) 23 Votes