Suncatcher42

Member
Aug 12, 2019
215
289
Is there any difference in scenes between playing in Secretary, warden or prisoner difficulty?

I have been playing the secretary difficulty and was wondering if there is some scenes only accesible as prisoner
Short answer is no.
There are a few things that are much harder to do at low difficulties though. You might have trouble getting into some situations if Karryn is too powerful or too resistant to the prisoners' advances and miss some scenes that way (like not being able to get the enemies to pull of their counter effect after you kick them), and enemies having lower stats in general means that they'll very rarely have the endurance to keep fighting after they shoot their first load, at least until you get endgame edicts to pump them full of drugs (which makes things like the unlock for hitting 300% pleasure before having a massive compound orgasm almost impossible, since nobody can deal enough total pleasure damage before they're tapped out).

So a question to all the build gurus out there: do those changes make the slut build different? Am I correct un understanding that you now need to focus mind and dexterity instead of mind and endurance?
I haven't played since 0.6 and am waiting for more changes to get back into it but am also trying to keep tabs on what the meta is :D

(Man, this really DOES sound like I am talking about a moba!)
Figuring out the specifics will require playtesting, but it sounds like Dexterity will be more useful than before (for sluts and fighters both), and several slutty titles will be more effective than they used to be or have fewer drawbacks. Honestly though the 'meta' changes so much with every update that if you're not going to play v8.0 you really don't have to worry about it because it will be completely different by the time you jump in.

As far as I know the subjugation of the 3rd floor should also unlock the next outfit for the waitress and receptionist jobs.
Am I missing something in the progress report or are the new outfits not included in v0.8?
Probably part of the 39 new edicts that got implemented. I think the outfit upgrades are just improving clothing HP tho, not new styles. We'll probably have to wait for post-release content to add new outfits in v1.1 or 1.2.
 

Back

Well-Known Member
Aug 3, 2017
1,587
6,128
the game ends right now after you win the stage 3 boss ?
The new update will be released tomorrow for the higher-end patrons and a week or two for others (according to the news over at SubscribeStar, see ). There's going to be quite a bit of changes, but going to the heart of your question, you'll be able to venture into level 4 and level 3 will be subjugated once you beat its respective boss. I recommend that you wait a while after the initial update gets released as bugfixes usually follow them, if you can wait that is. Though, I'm sure there's going to be lots of people that are eagerly waiting for it to drop and are chomping at the bits for it. ^^
 
  • Yay, update!
Reactions: JackDaniel777

spacemix

Member
Dec 30, 2020
320
515
Any build experts here who can advise me on how to make a masturbation build? Whenever I rack up enough dexterity levels for it to become viable Karryn just commits to sex instead of touching herself to completion, it feels like a bug to be honest.
 

Jackobie

Newbie
Jun 20, 2018
47
6
mamaboiii I have a question for you, so I mod my energy move requirements(or try to anyway) as well as the stat growth rate and I've come across this problem a couple of times not every time though where something I change seems to permanently reduce my energy whenever karryn orgasms and I'm not sure what it is since there a gaps of a couple months where I don't tough the game or its files. have you ever run across this yourself or know what might be causing this to happen?
 
Last edited:

Tsugumi

Well-Known Member
Oct 16, 2018
1,363
1,121
Jackobie Tip: leave a marker at lines you edit to make them easier to find. Make use of the fact that code starting with "//" (two forward slashes) is ignored until the next line - I put a "//changed from XX" so I can keep track of both things I broke changed and the original values, that way I can avoid having to check the original file to revert the changes. Notepad++ has a "find all in all documents" feature to help with that; it can keep multiple text files open at the same time, as well, like tabs in a web browser.

You don't have permission to view the spoiler content. Log in or register now.

The reason I say this is because I suspect you are going to get a form of "no idea" as a reply, since your question can be boiled down to "I changed something months ago. Can you tell me what it was?" Personally, I would grab Notepad++ and the plugin for comparing two text files and run every file I suspect of being edited against the original. The catch for helpers is rather obvious: nobody has your edited files but you.
 

mamaboiii

Active Member
Oct 13, 2018
548
1,614
Jackobie Tip: leave a marker at lines you edit to make them easier to find. Make use of the fact that code starting with "//" (two forward slashes) is ignored until the next line - I put a "//changed from XX" so I can keep track of both things I broke changed and the original values, that way I can avoid having to check the original file to revert the changes. Notepad++ has a "find all in all documents" feature to help with that; it can keep multiple text files open at the same time, as well, like tabs in a web browser.

You don't have permission to view the spoiler content. Log in or register now.

The reason I say this is because I suspect you are going to get a form of "no idea" as a reply, since your question can be boiled down to "I changed something months ago. Can you tell me what it was?" Personally, I would grab Notepad++ and the plugin for comparing two text files and run every file I suspect of being edited against the original. The catch for helpers is rather obvious: nobody has your edited files but you.
This, pretty much.
But although I'm not even sure I understood what your problem was there is one thing I regarding the energy. There is a passive that, once gained, lowers her max energy by one (I think) per orgasm achieved that day. It should (obviously) reset though after sleeping.
 
  • Like
Reactions: Tsugumi

Tsugumi

Well-Known Member
Oct 16, 2018
1,363
1,121
Relevant RemtairyKarrynPassives.js code excerpt:

JavaScript:
else if(paramId === PARAM_MAXENERGY_ID) {
if(this.hasPassive(PASSIVE_ORGASM_COUNT_ONE_ID) && this._tempRecordOrgasmCount > 0)
paramBonus -= this._tempRecordOrgasmCount;
if(this.hasPassive(PASSIVE_ORGASM_COUNT_FIVE_ID) && this._todayOrgasmCount > 0)
paramBonus -= this._todayOrgasmCount;
Both passives come from orgasms (pun not intended); count_one is "First Taste of Paradise", count_five is "Orgasms Are Just the Opening Fire". The former reduces maxenergy by "how many orgasms Karryn had during the current battle", the latter - by "how many orgasms Karryn had today". If I understand correctly, the two stack, that can add up to quite the penalty.
 

mikeyJ

Newbie
Aug 22, 2017
18
6
Any build experts here who can advise me on how to make a masturbation build? Whenever I rack up enough dexterity levels for it to become viable Karryn just commits to sex instead of touching herself to completion, it feels like a bug to be honest.
I'd say there's not much besides suppressing cock desire every turn. Without cock desire anything sex-related is off the table! Watch out for those rogues and their rimming though - that's still fair game.
 

Jackobie

Newbie
Jun 20, 2018
47
6
Relevant RemtairyKarrynPassives.js code excerpt:

JavaScript:
else if(paramId === PARAM_MAXENERGY_ID) {
if(this.hasPassive(PASSIVE_ORGASM_COUNT_ONE_ID) && this._tempRecordOrgasmCount > 0)
paramBonus -= this._tempRecordOrgasmCount;
if(this.hasPassive(PASSIVE_ORGASM_COUNT_FIVE_ID) && this._todayOrgasmCount > 0)
paramBonus -= this._todayOrgasmCount;
Both passives come from orgasms (pun not intended); count_one is "First Taste of Paradise", count_five is "Orgasms Are Just the Opening Fire". The former reduces maxenergy by "how many orgasms Karryn had during the current battle", the latter - by "how many orgasms Karryn had today". If I understand correctly, the two stack, that can add up to quite the penalty.
ah, thats whats doing it, I played through one game already but hit a wall, and just went into the newpassives and gave my self everything so I just need to go remove those passives, this is why it didn't always happen, I've only done this like 3 times which is when it always happened
 

Nedaore

Newbie
Mar 8, 2021
31
67
Does any Karryn-bro have a Virgin Save file? I deleted this game months ago, I tried looking around but I could only find savefiles with around 500 Titles where Karryn is covered in semen and she furiously masturbates when you hit her twice.


I want my Karryn to be virgin until matrimony, thanks.
 

ilmncsm

Active Member
Apr 10, 2018
667
551
Does any Karryn-bro have a Virgin Save file? I deleted this game months ago, I tried looking around but I could only find savefiles with around 500 Titles where Karryn is covered in semen and she furiously masturbates when you hit her twice.


I want my Karryn to be virgin until matrimony, thanks.
Here you go: This is my current agility build. Karryn is as pure as is really feazable at this point. Got lots of passives for being stared at, and some for mouth fondleing, but I've managed to avoid so much as kissing anyone, let alone sex. I've reached the end of level 3, and earned the titles I was trying to get in this run (The high level agility, piercing, and dodge titles) and have been futzing about earning the bankruptcy titles, and the max order titles, as well as a few others. The save is currently bankrupt, but has high order and the reception, so you should be fine, and even if you tank your order, the bankruptcy will solve itself as the subsidies come back. Was planning on running it a bit longer, then upgrading to the 0.8 when it released and starting new game plus. Hope you find it useful.
 
Jan 9, 2018
148
190
Changed the way stamina cost for Waitress and Receptionist skills are calculated to favor Karryn when she has above a
Here you go: This is my current agility build. Karryn is as pure as is really feazable at this point. Got lots of passives for being stared at, and some for mouth fondleing, but I've managed to avoid so much as kissing anyone, let alone sex. I've reached the end of level 3, and earned the titles I was trying to get in this run (The high level agility, piercing, and dodge titles) and have been futzing about earning the bankruptcy titles, and the max order titles, as well as a few others. The save is currently bankrupt, but has high order and the reception, so you should be fine, and even if you tank your order, the bankruptcy will solve itself as the subsidies come back. Was planning on running it a bit longer, then upgrading to the 0.8 when it released and starting new game plus. Hope you find it useful.
Here you go: This is my current agility build. Karryn is as pure as is really feazable at this point. Got lots of passives for being stared at, and some for mouth fondleing, but I've managed to avoid so much as kissing anyone, let alone sex. I've reached the end of level 3, and earned the titles I was trying to get in this run (The high level agility, piercing, and dodge titles) and have been futzing about earning the bankruptcy titles, and the max order titles, as well as a few others. The save is currently bankrupt, but has high order and the reception, so you should be fine, and even if you tank your order, the bankruptcy will solve itself as the subsidies come back. Was planning on running it a bit longer, then upgrading to the 0.8 when it released and starting new game plus. Hope you find it useful.
AMAZING bro. Idk if you can relate but ive been dying to have her save her virgininity until that final boss in level 5..... literally cant wait till they finish this shit its gonna be sick.
 

ilmncsm

Active Member
Apr 10, 2018
667
551
AMAZING bro. Idk if you can relate but ive been dying to have her save her virgininity until that final boss in level 5..... literally cant wait till they finish this shit its gonna be sick.
You're very welcome. Personally I was avoiding anything sexual because I was doing the run for lots of hard to get combat titles, and getting them would be even harder if I let myself fall into debauchery. I'm going to tank the run eventually to start a new game plus for the express purpose of getting a different set of combat titles. I'm just waiting for the new game version first. When it eventaully releases fully, I'll absolutely do a virgin run, but that's because I always do a virgin run in H-Games to see if there is a different ending for it, and because I like to see if it's even possible in terms of difficulty (it isn't always, even if it isn't scripted). I highly suspect there will be a virgin ending, based on the letter you get from the Emperor after beating the third boss.
 
4.60 star(s) 450 Votes