drchainchair2

Member
Mar 28, 2020
417
1,080
359
Ah, so that's why I got mixed results where for some it would work and not for others. I'll have to dig deeper then, thanks.
You can try looking at Game_Enemy.prototype.setupEnemyPrefixEffect and Game_Enemy.prototype.enemyPrefixParamRate

Can also look here for when Enemies.json is parsed DataManager.processRemTMNotetags_RemtairyEnemy

I spent a while trying to figure this out but nothing I tried worked for stock.
 

Comrade Anulnyat

Member
Respected User
Aug 5, 2016
444
1,327
466
Well it's certainly possible, I haven't tested it properly though.
Sorry to barge into the conversation, but what exactly are you trying to do with ejaculation stock? Like, do you look for the way to increase the amount of orgasms the inmate can have or do you actually go deeper into code to change how the whole ejaculation stock system thing works?
I don't want to look lazy or ignorant, I'm currently still looking at the last few posts to understand what you are after.
Edit.
So the person was looking for a way to increase ejaculation stock for enemies, basically make inmates into studs, who can cum 2 times +.
I don't know how good this solution is, since I haven't really dug into to how orgasm system, especially energy and volume works, but the easiest way to make enemies cum multiple times is to go into Karryn's Prison\www\data, locate "\n<Ejaculation Stock: 2>" in Enemies.json file and insert into desired unit's "stats"(obviously increasing the number).

I've done it before and still using it, the only problem I could encounter is the cum volume not being consistent or if you put number more than 4, there is a chance, that the inmate just simply will leave combat on their forth orgasm, hence why I started to talk about energy and cum volume.

Though, I'm pretty sure it depends on player using Karryn's sex skills, which seem to drain enemies quickly.
So for example you're using Vaginal skill on inmate until they reach maximum pleasure and cum from it, which makes them cum more, but from my experience that more powerful orgasm counts as two. Hope that makes sense?

Edit 2.
Forgot to mention "\n<Ejaculation Amount: 14>". It seem to directly affect the volume, however it doesn't work well with Ejaculation stock.
Example: you put a high Ejaculation Amount and want inmate to have four "rounds", but because of the higher volume, inmate could probably unload whole gallon and will be done in just one orgasm. How and where you can change I don't know. Most likely energy related thing. Did manage to have Tonkin cumming around 80ml four times in a row on older build, though.
 
Last edited:

voidzone247

Active Member
Mar 12, 2017
803
997
341
You can try looking at Game_Enemy.prototype.setupEnemyPrefixEffect and Game_Enemy.prototype.enemyPrefixParamRate

Can also look here for when Enemies.json is parsed DataManager.processRemTMNotetags_RemtairyEnemy

I spent a while trying to figure this out but nothing I tried worked for stock.
Ended up editing the following:
JavaScript:
Game_Enemy.prototype.regenerateHp = function() {
    //if(this.hasNoStamina()) return; removed this line
    if(this.isVisitorMaleType || $gameParty.isInGloryBattle) {
        this.setUsedSkillThisTurn(false);
        return;
    }
    //if(this.energy !== 0 && (this._ejaculationStock > 0 || Karryn.isInNoEjaculationStockStillContinuesPose())) { replaced this if-statement with the one below
    if(this._ejaculationStock > 0 || Karryn.isInNoEjaculationStockStillContinuesPose()) {
        let value = Math.floor(this.maxstamina * this.staminaregen);
        if (value !== 0) {
            this.gainHp(value);
        }
        this.setUsedSkillThisTurn(false);
    }
    else {
        this.removeImmortal();
        this.gainHp(-this.stamina);
    }
};
It works for me, because I don't intend to ever whack something with my halberd or kick it to death, but I reckon it may make enemies invulnerable from retreating in any other way than blowing their load.

edit: May also want to edit Game_Enemy.prototype.ejaculationVolume so that it isn't ceilinged by their energy value, else they'll start blowing empty loads.
JavaScript:
    //return Math.min(Math.ceil(value), this.energy); replace this by simply:
    return value;
 
Last edited:

Mr. Coatl

Member
Mar 27, 2018
109
250
299
This is not a clean version, sorry. I've made changes, but I can't remember what those changes are. If you run into some weird stuff let me know and I can maybe try to fix it.

Mega
Thank you very much! Chainchair said there's a newer version of the mod coming down the pipe, but it doesn't hurt to keep everything available and up to date.
 
  • Like
Reactions: voidzone247

Vyacheslav Grinko

Active Member
Nov 9, 2018
623
654
295
Can someone explain to me what actions are possible while working as a waitress can you do sex actions while working ??
Or the only sex you can perform is while waking up at the table ????
 

voidzone247

Active Member
Mar 12, 2017
803
997
341
Can someone explain to me what actions are possible while working as a waitress can you do sex actions while working ??
Or the only sex you can perform is while waking up at the table ????
Karryn is basically subjugated to all the regular looks/pets/spanks etc while passing by enemies at the tables. She'll also get requests to flash the crowd, which she may or may not accept for a tip depending on your stats. But other than that, the fun part is when she gets too drunk to walk and they help her take a rest on the table, yeah.
 
  • Like
Reactions: Vyacheslav Grinko

White

Member
Feb 22, 2017
235
589
291
Since we are talking about code, I am looking for a way to raise or lower the desires needed for some actions, like blowjobs or vaginal sex. Anyone knows where I can find it?
 

voidzone247

Active Member
Mar 12, 2017
803
997
341
Fair warning for anyone using my above code to increase stock; it works for visitors too. It may take some time to satisfy each horny visitor. Use at your own peril.

Currently trying to figure out how to limit it from affecting them. isVisitorType doesn't appear to be working.
 

voidzone247

Active Member
Mar 12, 2017
803
997
341
Since we are talking about code, I am looking for a way to raise or lower the desires needed for some actions, like blowjobs or vaginal sex. Anyone knows where I can find it?
These are all defined in RemtairyKarrynPassives.js under the section "Desire Requirements". Just ctrl-f for that and you should find it pretty fast.
 

xdlmao99

Newbie
May 17, 2019
76
135
225
is there a way to edit edict points, order and control? I want to play with the prisoner mode aggressiveness without dealing with all the things around it
 

Regelious

Member
Aug 17, 2018
255
2,697
314
is there a way to edit edict points, order and control? I want to play with the prisoner mode aggressiveness without dealing with all the things around it
literally just use the search button, it has been answered many times
 

voidzone247

Active Member
Mar 12, 2017
803
997
341
wouldnt have posted if I found my answer there
Take a look at RemtairyPrison.js. Just fiddling with the starting constants in the first set there should be enough for what you need in terms of order and income.

In RemtairyEdicts.js you can find the function getNewDayEdictPoints (row 544 for me). You can fiddle with the result of that function to get more daily edict points.
 

annam

Member
Apr 13, 2017
365
405
337
I ran into a problem(?) where during the bar scene there were about 5 people left to be targeted with the kiss option, their pleasure would increase but they wouldn't do anything else. I could use any other sex skill on them. Is this a bug or just the intended way for the scene to end. I just wanted to completely fill the mug.
 

Regelious

Member
Aug 17, 2018
255
2,697
314
I ran into a problem(?) where during the bar scene there were about 5 people left to be targeted with the kiss option, their pleasure would increase but they wouldn't do anything else. I could use any other sex skill on them. Is this a bug or just the intended way for the scene to end. I just wanted to completely fill the mug.
after they all have a turn on karryn and finish with her they stay there until she finished the mug, you can kiss them but thats all
 
4.60 star(s) 500 Votes