PalmFace

Active Member
Aug 22, 2017
763
394
Corruption doesn't have anything to do with sex, you gain ADMINISTRATIVE corruption from getting crooked edicts (forcing inmates into hard labor, drugging the inmates, using prison money to buy personal accessories for Karryn, etc)
That makes a lot of sense! Thank you :)

One more question, I hope you don't mind it^^ What exactly do I need to do to win a battle with sex WITHOUT having the game skip to the next day? I feel like sometimes I get to revitalize during sex and win, othertimes I "win during sex" but then still get dragged to bar/bathroom and wake up there the next morning..
 

manscout

Well-Known Member
Jun 13, 2018
1,222
1,934
That makes a lot of sense! Thank you :)

One more question, I hope you don't mind it^^ What exactly do I need to do to win a battle with sex WITHOUT having the game skip to the next day? I feel like sometimes I get to revitalize during sex and win, othertimes I "win during sex" but then still get dragged to bar/bathroom and wake up there the next morning..
You need to outlast your enemies by having any energy or stamina left at the end of the battle (when all the enemies are already "spent" and run away). If you have any energy or stamina left you defeated them sexually, if you ran out of energy and stamina then you were defeated.
 
  • Like
Reactions: PalmFace

Retr0_Lad

Newbie
Jun 28, 2021
24
9
Hey guys, is there any way to make Karryn act like tsundere?
I mean, leave only phrases and faces when she wasn't slut, but still have any kind of sex
 

Koodos

Newbie
Jan 3, 2020
55
48
That makes a lot of sense! Thank you :)

One more question, I hope you don't mind it^^ What exactly do I need to do to win a battle with sex WITHOUT having the game skip to the next day? I feel like sometimes I get to revitalize during sex and win, othertimes I "win during sex" but then still get dragged to bar/bathroom and wake up there the next morning..
If you get dragged to the bathroom/bar, you lost. The bathroom scene is a combat loss scene. Losing a fight skips to the next day, except during side-jobs.
To end a fight winning, you have to still have energy and stamina left in a normal fight. You can do that by making the enemies cum and then flee, or by downright whacking them down and whittling their stamina to 0.
 
  • Like
Reactions: PalmFace

PalmFace

Active Member
Aug 22, 2017
763
394
Thanks guys!

I seem to have run into a bug(?), I think?! Level one started rioting but for some reason, I cannot get out of night mode. Whether I go to sleep in my bed or masturbate, I always "start the new day" at night.. Is this a bug? How do I fix it?
 
Last edited:
  • Like
Reactions: ryu14

zoomies

Well-Known Member
Jun 4, 2017
1,050
862
Thanks guys!

I seem to have run into a bug(?), I think?! Level one started rioting but for some reason, I cannot get out of night mode. Whether I go to sleep in my bed or masturbate, I always "start the new day" at night.. Is this a bug? How do I fix it?
what did you mod?
 

milkloliway

Newbie
Oct 6, 2021
16
11
View attachment 2032132 (image experimental offset penis for foreskin peeling)
(also some wip xray works fine, but it's far from done)

K, I have never touched RPGMaker before this. I have no idea how to setup variables, conditions and scripts (yet), but the idea should be something akin to having foreskin actually be peeled back and having smegma gradually increase -edit: DECREASE obviously ;).

I think I can work with the artwork just fine, but I'm gonna have to delve a bit deeper to understand:
-Adding layers of smegma based on dynamic parameters
-Positioning images based on ^
-Change image based on ^

The same would apply to text and voicelines triggered. I might have to splice a bit to intensify the effect.

Like swallowing sfx pre-cumshot along with alternate images with less smegma on it.

Might even consider "Karryn swallowed X gram (kilogram? lol) of smegma"

With custom edicts etc etc
Like "Prisoner Hygiene Standards" to reduce smegma for your normies ;)
or "Supervised Cleaning Regulation" - to make absolutely sure that qualified personnel (Karryn) does the "job"
Where cold showers only would marginally increase the amount of smegma on prisoners
And the reverse effect for allowing better hygiene elements

Honestly, if I make a smegma mod it's probably better to install or don't, but if I add more functionality like urophagia or something I suppose some of you might be interested in only parts. Choice is important to me at least if I can do it.

Edit: The idea of urophagia came to me when doing the waitress side-job. Pretty hot (to me at least) that all of that beer\water\whatever is eventually bound for the serving girl :D

Edit Edit: Edict that installs a sign on each adjacent toilet that the toilet is broken. Please use the hole on your right\left.
or you can contact with game maker
 

PalmFace

Active Member
Aug 22, 2017
763
394
View attachment 2037581

Think I've done these three. Could it be because of the clean up after sleep thing?
Okay, I think I found the code adjustments causing the error but I cannot figure out why it would cause it. Maybe one of you can take a look at it and see what exactly might cause it.

In the RemtairyPrison.js, the original code looks like this:

Code:
    this.checkForNewTitle();
    
    actor.getNewDayEdictPoints();
    actor.resetArtisanMeal();
    actor.resetTodayRecords();
    actor.putOnPanties();
    actor.passiveWakeUp_losePantiesEffect();
    actor.restoreClothingDurability();
    actor.putOnGlovesAndHat();
    actor.checkTitleFlagsOnNewDay();
    $gameScreen.setMapInfoRefreshNeeded();
I tried to follow the guide and changed it to the following:

Code:
this.checkForNewTitle();
    
    actor.getNewDayEdictPoints();
    actor.resetArtisanMeal();
    actor.resetTodayRecords();
    actor.takeOffPanties();
    //actor.putOnPanties();
    //actor.passiveWakeUp_losePantiesEffect();
    //actor.restoreClothingDurability();
    actor.putOnGlovesAndHat();
    actor.checkTitleFlagsOnNewDay();
    $gameScreen.setMapInfoRefreshNeeded();
};
Does anybody know why these three added comment lines would lead to the described bug? It doesn't really make sense to me..
Thanks!
 

manscout

Well-Known Member
Jun 13, 2018
1,222
1,934
Okay, I think I found the code adjustments causing the error but I cannot figure out why it would cause it. Maybe one of you can take a look at it and see what exactly might cause it.

In the RemtairyPrison.js, the original code looks like this:

Code:
    this.checkForNewTitle();
   
    actor.getNewDayEdictPoints();
    actor.resetArtisanMeal();
    actor.resetTodayRecords();
    actor.putOnPanties();
    actor.passiveWakeUp_losePantiesEffect();
    actor.restoreClothingDurability();
    actor.putOnGlovesAndHat();
    actor.checkTitleFlagsOnNewDay();
    $gameScreen.setMapInfoRefreshNeeded();
I tried to follow the guide and changed it to the following:

Code:
this.checkForNewTitle();
   
    actor.getNewDayEdictPoints();
    actor.resetArtisanMeal();
    actor.resetTodayRecords();
    actor.takeOffPanties();
    //actor.putOnPanties();
    //actor.passiveWakeUp_losePantiesEffect();
    //actor.restoreClothingDurability();
    actor.putOnGlovesAndHat();
    actor.checkTitleFlagsOnNewDay();
    $gameScreen.setMapInfoRefreshNeeded();
};
Does anybody know why these three added comment lines would lead to the described bug? It doesn't really make sense to me..
Thanks!
Night mode is related to clothing durability, you enter night mode once Karryn reaches a sufficient state of enduring undress (persists after battle), stopping sleep from restoring your clothes durability is keeping you in night mode.

If you want to keep her permanently naked you will probably have to mod whatever function controls the night mode trigger to be triggered by something else.
 

zoomies

Well-Known Member
Jun 4, 2017
1,050
862
Okay, I think I found the code adjustments causing the error but I cannot figure out why it would cause it. Maybe one of you can take a look at it and see what exactly might cause it.

In the RemtairyPrison.js, the original code looks like this:

Code:
    this.checkForNewTitle();
  
    actor.getNewDayEdictPoints();
    actor.resetArtisanMeal();
    actor.resetTodayRecords();
    actor.putOnPanties();
    actor.passiveWakeUp_losePantiesEffect();
    actor.restoreClothingDurability();
    actor.putOnGlovesAndHat();
    actor.checkTitleFlagsOnNewDay();
    $gameScreen.setMapInfoRefreshNeeded();
I tried to follow the guide and changed it to the following:

Code:
this.checkForNewTitle();
  
    actor.getNewDayEdictPoints();
    actor.resetArtisanMeal();
    actor.resetTodayRecords();
    actor.takeOffPanties();
    //actor.putOnPanties();
    //actor.passiveWakeUp_losePantiesEffect();
    //actor.restoreClothingDurability();
    actor.putOnGlovesAndHat();
    actor.checkTitleFlagsOnNewDay();
    $gameScreen.setMapInfoRefreshNeeded();
};
Does anybody know why these three added comment lines would lead to the described bug? It doesn't really make sense to me..
Thanks!
please do more reasearch before you mod the game and say it is bugged. there is no bug. you made her naked all the time. naked means you are in scandolus state. that is the answer.
 
  • Like
Reactions: PalmFace

Z3r0K00l

Member
Aug 30, 2022
183
434
Hey guys, is there any way to make Karryn act like tsundere?
I mean, leave only phrases and faces when she wasn't slut, but still have any kind of sex
Yeah, her lines seem to be related to her slut level so you could edit the code to make it so she always uses the same lines no matter her slutlvl, im guessing karryn's facial expressions are controlled the same way, i havent done it so i couldn't tell you how to do it.
 

Retr0_Lad

Newbie
Jun 28, 2021
24
9
Yeah, her lines seem to be related to her slut level so you could edit the code to make it so she always uses the same lines no matter her slutlvl, im guessing karryn's facial expressions are controlled the same way, i havent done it so i couldn't tell you how to do it.

I used cheat menu, and yeah it works with face but not all the time, and lines haven't changed at all
 
Jun 30, 2018
275
180
i finished the game in pure run first and got all 3 titles achievments, should i start new game plus for masochistic ending with my passives or reset them? i read in a guide that masochistic needs full body sensitivity and i choose something else for the pure run. thanks
 

RedAISkye

Well-Known Member
Apr 10, 2017
1,104
2,505
I have installed this and still can't access this cheat menu please can someone give a little detailed procedure to access
You need to press the tilde "~" key to activate the cheat menu.

But, if it doesn't work for you, try changing the key to something else of your choice.
Instructions on that is in the note section of the .
 
4.60 star(s) 428 Votes