Aug 7, 2017
275
475
what i personally would like to see in upcoming updates- would be balance, as of now i tried many ways on prison mode to play thru levels without getting all naughty and stuff, there is no chance on that, you lose or u get your "fist kiss" :D or im doing something wrong( no cheats tho- play the game as it is meant to be cuz its fun )
it's possible, i done it before in V.4 but its not very fun to play
 

Blorgh

Newbie
Apr 7, 2018
34
29
From your own post " Jesus, Secretary mode's there for a reason. you literally could never lose with that, time-based or not." Did you ask if I play on that mode? No. In your on tune you would rather say "Jesus" as a nicer way to say "Hey Dumb-@$$"

And just in this post you rather insult me yet again by calling me a snowflake. You are clearly one of those who rather insult and attack as you explain rather being friendly about how something works. Please stop replying to me as your advice and comments are not wanted. Should you reply in less then a friendly tune, I will will ask a Moderator to get involved.
Dude...When someone takes the time to bother helping you, like Yukihirou did, the *least* you can is to bother reading their help carefully, rather than waste their time by asking the same thing again.

Quite frankly, your whole attitude here is incredibly entitled and far ruder than anything Yukihirou did.
 

zed4o777

Member
Dec 11, 2017
230
64
i found how to fix black screen if someone have this problem on win 10 right mouse click on .exe file /propertis/ compability / run in win 7 and start with administrator its work for me :)
 

Myth1014

Member
Jun 7, 2017
106
152
how to increase ep points? i got only 1 for sleeping
on prisoner mode you get 1 ep on odd days and 2 ep on even days i think, other modes are 2 ep per day, there's also some option at the start which lets you retain one unused ep
 

Brendon90

Member
Apr 27, 2018
256
1,167
Here's an offline modding guide (PDF) with all of the information from mamaboiii 's post here.
- You can use the bookmarks (icon) on the left side to jump to specific mods.

Mod/Tweak Guide PDF Download: (22 MB)
 
Last edited:

Suncatcher42

Member
Aug 12, 2019
217
290
Thank you for this in-depth explanation. Speaking of the receptionist job, is there a surefire way to trigger these scenes? The goblins are quite unmotivated, even if I got the max. Desire and dripping like a waterfall most times they just fap from across the room and sometimes rip her skirt off but nothing else happens.
Once you get a blushing visitor it's relatively easy to chain that into more fun with visitors; if you call somebody else up so they're waiting in live behind the one who's blushing at you before you start doing lewd stuff, they'll witness it and get an exclamation point (which means they'll contribute to your notoriety at the end of the shift) and then eventually start blushing themselves, at which point you can repeat the process until you run out of visitors.
But to get to that point in the first place, you have to rely on goblins, and they're little shits as always. If you don't care about your actual job performance you could summon all the available visitors and then make them just wait at the counter all day while you stand there with maxxed butt desire and wait for the goblins?
Also note that even horny visitors only request things during the initial greeting. Once you give them the first round of paperwork they're all business, and letting them see you whoring around will contribute to notoriety but not trigger anything new.
 

Creiv

New Member
Jul 15, 2017
9
5
Btw guys , is there any news about karryn can get sleep in guard room? I think i've seen it somewhere at V.5 , but its gone now



s1.jpg
and based lvl 3 design ,i hope Rem n Sachi sensei not forget to add event for Karryn taking shower and those prisoner trying to bang her , it would be a total waste if there are no scene in this washroom


I wonder if we'll be able to visit the rest of the rooms in future versions, like the classroom for example. There's an edict that lets Karryn pose nude so it could be just a single CG or something.
ah ya , about Karryn nude pose in the classroom that would be great too

if yall guys n gals have access to direct contact with Rem n Sachi sensei ,please just notify them about this
 

Suncatcher42

Member
Aug 12, 2019
217
290
I know it's not one of the four in the current plans, but a shower scene "side job" would be fun. If successful instead of money or order you could get a % stat increase like the one from a good night sleep, but to do that you need to survive a specific period of time naked in a room full of prisoners. With fun activities like trying not to drop the soap.

Working at the shop or the classroom would also be good... it's unfortunate that there are only four side jobs in 1.0, but maybe Rem will continue to put out DLC afterwards?
 

Darkstrain

Newbie
Jun 29, 2017
81
334
Ok before everyone CONTINUES to rip into my @$$ I would like to say that I am handicap and have a learning problem. I do not know why everyone is so heavy at wanting to attack me when I did not say anything bad about the game and even said everyone should try this game for themselves. No I do not understand how the game works. Words and sentences sometimes are hard for me understand and I try my best to understand them but here I got 2-3 people in here attacking me like I am the most evilest person they have ever met. If You want to help me understand how the game works and teach me great but there is no reason to attack me like this.
you are being criticized because your complaint was out of place...
-you say the game is hard because it's management-heavy.
-there is a difficulty where you literally stabilize your order in 3 days.
-if you say that the hard mode is hard... go play the easier mode.

you being dumb has nothing to do with the game's difficulty...
 

MiquShiro

Member
Oct 25, 2017
108
113
I have two modding questions:
1. How to increase amount of edicts you get per day
2. How to disable the order check for game over
 

cryosis431

Newbie
Jul 26, 2019
80
103
I have two modding questions:
1. How to increase amount of edicts you get per day
2. How to disable the order check for game over
You can change the edicts in RemtairyEdicts, where it says Let points = 2, change that to a higher number. Takes effect after you sleep.
For the order thing, it's easier to just increase the amount of control you have, which you can set in RemtairyPrison, on the line that says "return Math.round(control);" just set that to "return Math.round(control) + 20;" and you'll have more than enough to never worry about it.
 

drchainchair2

Member
Mar 28, 2020
268
701
I have two modding questions:
1. How to increase amount of edicts you get per day
2. How to disable the order check for game over
1. Search the thread this is asked like every page or just look at my mod.

2. There are several ways but just preventing order from ever going below a value is the most direct method without interfering with other things. Example from my mod:

JavaScript:
CC_Mod.Tweaks.Game_Party_setOrder = Game_Party.prototype.setOrder;
Game_Party.prototype.setOrder = function(value) {
    if (CCMod_orderCheat_Enabled) {
        value = Math.round(value.clamp(CCMod_orderCheat_MinOrder,CCMod_orderCheat_MaxOrder));
        Prison.order = value;
    }
    CC_Mod.Tweaks.Game_Party_setOrder.call(this, value);
};
 

Deleted member 909093

Engaged Member
Sep 25, 2018
2,436
5,350
Anyone figured out how to get rid off the gloves and hat permanently?

I've tried to edit the remtairykarryn.js file to all of my limited noob level understanding of code and i've not been able, there's a line about gloves and hat that i've tried to tinker with but it has always managed to end up making karryn completely nude in every situation for some reason.

MFW when diving into the code.
vammakko.jpg
 
Last edited:
4.60 star(s) 473 Votes