You can try looking at Game_Enemy.prototype.setupEnemyPrefixEffect and Game_Enemy.prototype.enemyPrefixParamRateAh, 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.
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?Well it's certainly possible, I haven't tested it properly though.
Ended up editing the following: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.
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);
}
};
//return Math.min(Math.ceil(value), this.energy); replace this by simply:
return value;
Should be around next monthSo, I found the bathroom for he gloryhole, is it ready?
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.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
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.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 ????
These are all defined in RemtairyKarrynPassives.js under the section "Desire Requirements". Just ctrl-f for that and you should find it pretty fast.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?
Thank you. Can I go over 200 or will it break the game?These are all defined in RemtairyKarrynPassives.js under the section "Desire Requirements". Just ctrl-f for that and you should find it pretty fast.
literally just use the search button, it has been answered many timesis 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
wouldnt have posted if I found my answer thereliterally just use the search button, it has been answered many times
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.wouldnt have posted if I found my answer there
Going over 200 simply means they won't occur, as Karryn's desires are capped at 200.Thank you. Can I go over 200 or will it break the game?
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 allI 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.