CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

Hipz

Member
May 25, 2019
122
223
If my memory don't fail me. Rem (the dev) told us that they're hiring a voice actress for Karryn, right? He never mention it again, does he?
 

BlinkXPoke

Newbie
Jun 28, 2020
66
39
Was there a way to mod in ways for Karryn to choose what happens to her? It feels bizarre to me that, even if she were to become a late-stage slut, that certain things still need to happen to her as opposed to her asking for it.

Yes, I realize I could have her initiate some actions, but say, the kick counter involves setting up so many different parameters which can be foiled at any moment if one of the enemies decides to fuck her a different way. If I had the option, I would only ever go for the poses that could possibly result in Double Penetration, like said Kick Counter or, say, the Guard Gangbang.

Either that, or restrict the moves an inmate can make so, say, the Kick Counter pose is actually just a sexual attack they can do as opposed to a counterattack with so many different conditions needed to even attempt to initiate. I remember seeing someone describe how to do that, but it involved changing so much code that it was too daunting of a task for me. I have absolutely no experience with coding so I'm always scared to mess with it if there aren't specific instructions.

The fact that weirdly there is such a lack of control is why I personally lost interest in this game, especially given that options to lean into the lewdness early-game kept getting skimmed and obtaining new passives got grindier and grindier.
 

Austin3456

Member
Aug 15, 2018
242
132
Has he said what the next update will be yet? like is he gonna start level 5 or do something with that strip club that was mentioned?
 

Shinobikun

Member
Oct 5, 2017
141
328
New progress report shows some new CGs. Kinda looks like he maybe redid the chapter 1 defeat scene? Hopefully someone can share :)
 

Hipz

Member
May 25, 2019
122
223
He wants to finish the game before hiring the voice actress so everything can be voiced all at once. It's easier and also cheaper to do it this way.
So Karryn voice actress is still on the menu then :love:


I can see that it's what happended to Dragon Quest 11. They want to add the voice acting but the director keep changing dialouge until the last minute so they couldn't do it.
 
  • Like
Reactions: Scorpioguy99

tetrayrok

Member
Apr 2, 2021
118
120
I can revisit it if you're still looking for a solution and haven't found it yet. Sorry not really on.

You're going to have to do it in two parts if you've already started a game;

This will disable edicts and difficulty affecting order; You're going to have to change the control value to be your current order- value = your desired order.
So if I have 60 order and I want it to be set at 10, I'm going to have to put -50 in the control variable. Sleep, then change the control to be 0 and reboot the game. That should just cap you at your desired value.



Code:
Game_Party.prototype.recalculateBaseOrderChange = function() {
    let actor = $gameActors.actor(ACTOR_KARRYN_ID);
    let skillsArray = actor.skills();
    this._orderChangePerDay = PRISON_STARTING_ORDER_PER_DAY;
    // for(let i = 0; i < skillsArray.length; ++i) {
    //     let skillId = skillsArray[i].id;
    //     let skill = $dataSkills[skillId];
    //     if(skill.edictOrderPerDay !== 0) $gameParty.increaseOrderChangePerDay(skill.edictOrderPerDay);
    // }
};
I also commented out any skills that may affect order in this function. This function gets called every time you advance a day.

Code:
Game_Party.prototype.orderChangeValue = function() {
    let actor = $gameActors.actor(ACTOR_KARRYN_ID);
    let control = -50;  // You're going to have to change this to zero after.
    // let control = this._orderChangePerDay;

    // control += this.orderChangeRiotManager();
    // control += actor.titlesOrderChange();
    // control += actor.variablePrisonControl();

    // if(actor.isUsingThisTitle(TITLE_ID_FULL_ORDER_TWO) && actor._flagEquippedFullOrderTwoTitleForWholeDay) {
    //     control *= 0.5;
    // }

    //if(Prison.easyMode()) {
    //    if(ConfigManager.cheatLessControlFive) control -= 5;
    //    if(ConfigManager.cheatLessControlTen) control -= 10;
    //}

    return Math.round(control);
};
After you've gotten to your desired value; Set the control change to zero.

Code:
Game_Party.prototype.orderChangeValue = function() {
    let actor = $gameActors.actor(ACTOR_KARRYN_ID);
    let control =  0;
    // let control = this._orderChangePerDay;

    // control += this.orderChangeRiotManager();
    // control += actor.titlesOrderChange();
    // control += actor.variablePrisonControl();

    // if(actor.isUsingThisTitle(TITLE_ID_FULL_ORDER_TWO) && actor._flagEquippedFullOrderTwoTitleForWholeDay) {
    //     control *= 0.5;
    // }

    //if(Prison.easyMode()) {
    //    if(ConfigManager.cheatLessControlFive) control -= 5;
    //    if(ConfigManager.cheatLessControlTen) control -= 10;
    //}

    return Math.round(control);
};
Same file different function.
 
Last edited:
4.60 star(s) 447 Votes