Yorik3231

New Member
Jan 5, 2025
4
3
Hi guys, I first played the non-mod version on the highest difficulty and now I downloaded the mod version and it seems to me that even when I choose the hardest difficulty, the gameplay becomes easier, is there a way to fix this somehow? I also have skills available that shouldn't be open at first
 

Xypster

Member
Oct 21, 2019
169
150
Hi guys, I first played the non-mod version on the highest difficulty and now I downloaded the mod version and it seems to me that even when I choose the hardest difficulty, the gameplay becomes easier, is there a way to fix this somehow? I also have skills available that shouldn't be open at first
Well, Purple_Heart did mention that they tweaked the game to be easier in their post, don't know what were you expecting. As for making it more difficult you can increase some values in settings like increase number and amount of reinforcements (ccmod - enemies - reinforcement), lower the stat growths (Minor option - cheats - attribute cheats), among other things.
 

Yorik3231

New Member
Jan 5, 2025
4
3
Well, Purple_Heart did mention that they tweaked the game to be easier in their post, don't know what were you expecting. As for making it more difficult you can increase some values in settings like increase number and amount of reinforcements (ccmod - enemies - reinforcement), lower the stat growths (Minor option - cheats - attribute cheats), among other things.
thanks, I just didn't see that the mod version was simplified
 

ronadan

Member
Jul 2, 2017
174
369
so, it seems like the last time people talked about the Shower mod was around 700 pages ago (crazy!). Does anyone know what happened to it? I remember it had major problems after the Gym DLC dropped, but Idk if it was officially abandoned or not. tbh I've been a bit out of the loop, but I'd appreciate it if anyone more aware could enlighten me.
 

souldead341

Engaged Member
Oct 16, 2017
2,512
2,608
so, it seems like the last time people talked about the Shower mod was around 700 pages ago (crazy!). Does anyone know what happened to it? I remember it had major problems after the Gym DLC dropped, but Idk if it was officially abandoned or not. tbh I've been a bit out of the loop, but I'd appreciate it if anyone more aware could enlighten me.
Been abandoned AFAIK.
 

alex andrews

Member
Jun 17, 2019
461
263
Is there a way to add nipple rings and clit ring to accessories? Is they just can get in battle only? They occur very few times
 

momozahara2

Newbie
Mar 6, 2018
28
28
I can see how this code might be causing the issue, but I'm not sure how to fix it without either removing the mod or potentially breaking it entirely.
here is a quick fix I did. I forgot one thing did guard defeated also result in defiled halberd?

JavaScript:
(() => {
    kp_deviancy.customs = {};
    kp_deviancy.customs.GUARDSBRIDE = false;

    const dv_preDefeatedGuardBattleSetup = Game_Party.prototype.preDefeatedGuardBattleSetup;
    Game_Party.prototype.preDefeatedGuardBattleSetup = function() {
        dv_preDefeatedGuardBattleSetup.call(this);
        let actor = $gameActors.actor(ACTOR_KARRYN_ID);
        if(Karryn.hasEdict(kp_deviancy.Edicts.GUARDSBRIDE)){
            kp_deviancy.customs.GUARDSBRIDE = true;
            actor.changeToWeddingClothing();
            actor.setTachieBody('wedding_1');
        }
    };

    const dv_postBattleCleanup = Game_Party.prototype.postBattleCleanup;
    Game_Party.prototype.postBattleCleanup = function() {
        let actor = $gameActors.actor(ACTOR_KARRYN_ID);
        if (kp_deviancy.customs.GUARDSBRIDE === true) {
            kp_deviancy.customs.GUARDSBRIDE = false;
            actor.changeToWardenClothing();
            actor.setTachieBody(1);
        }
        dv_postBattleCleanup.call(this);
    };
})()
 
Last edited:

momozahara2

Newbie
Mar 6, 2018
28
28
Pre-Modded Game Upload (Karryn's Prison v1.3.0.95) – Two Versions Available!

As promised, I’ve uploaded a pre-modded version of the game. You can choose between two versions:

• Modded: Includes all listed mods with mostly default or untouched settings.
• Modded + My Edits: Same mod list, but heavily tweaked for a much easier and streamlined gameplay experience.

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



Important Notes:

  • These versions have not been thoroughly tested. They were only checked to ensure the game launches, can start a new game, and can load existing saves. You may encounter bugs, or unexpected behavior, use at your own discretion.
  • Due to the number of mods and custom tweaks involved, it is strongly recommended to start a new playthrough or create a separate save file when using these versions. Using old saves may result in instability or conflicts.
  • I've just realized that both the Hide HUD mod and the Karryn Babe mod use the same keybind: "H". Unfortunately, I can't re-upload the entire game just to resolve this minor conflict. If you plan to use either of these mods, I recommend manually changing the keybind to avoid issues. You can do this from the main menu by navigating to: Settings > Mods > Hide HUD > Shortcut to toggle HUD or Settings > Mods > Karryn Slutty > Shortcuts > In Battle > Remove Bliss state
karryn the lover seem to break the game for me everyone include karryn pleasure always result in decreasing make the combat stuck.
and sometime surrender action do nothing which I can't pinpoint what cause the problem yet.
and maybe suggest people to disable debug too.
 
Last edited:

Purple_Heart

Engaged Member
Oct 15, 2021
2,876
4,849
here is a quick fix I did. I forgot one thing did guard defeated also result in defiled halberd?

JavaScript:
(() => {
    kp_deviancy.customs = {};
    kp_deviancy.customs.GUARDSBRIDE = false;

    const dv_preDefeatedGuardBattleSetup = Game_Party.prototype.preDefeatedGuardBattleSetup;
    Game_Party.prototype.preDefeatedGuardBattleSetup = function() {
        dv_preDefeatedGuardBattleSetup.call(this);
        let actor = $gameActors.actor(ACTOR_KARRYN_ID);
        if(Karryn.hasEdict(kp_deviancy.Edicts.GUARDSBRIDE)){
            kp_deviancy.customs.GUARDSBRIDE = true;
            actor.changeToWeddingClothing();
            actor.setTachieBody('wedding_1');
        }
    };

    const dv_postBattleCleanup = Game_Party.prototype.postBattleCleanup;
    Game_Party.prototype.postBattleCleanup = function() {
        let actor = $gameActors.actor(ACTOR_KARRYN_ID);
        if (kp_deviancy.customs.GUARDSBRIDE === true) {
            kp_deviancy.customs.GUARDSBRIDE = false;
            actor.changeToWardenClothing();
            actor.setTachieBody(1);
        }
        dv_postBattleCleanup.call(this);
    };
})()
Yes, I believe defeat is supposed to result in a defiled halberd, though I'm not entirely certain. Have you tested the code to confirm whether it's working as intended?

karryn the lover seem to break the game for me everyone include karryn pleasure always result in decreasing make the combat stuck.
and sometime surrender action do nothing which I can't pinpoint what cause the problem yet.
and maybe suggest people to disable debug too.
This behavior is the result of mood based buffs and debuffs. If you want to change it, you can disable the Karryn the Lover feature from the Karryn Babe mod, though to be clear, there's nothing actually broken here; it's functioning as intended. I already recommended disabling that feature in one of my earlier posts.
 

momozahara2

Newbie
Mar 6, 2018
28
28
Yes, I believe defeat is supposed to result in a defiled halberd, though I'm not entirely certain. Have you tested the code to confirm whether it's working as intended?


This behavior is the result of mood based buffs and debuffs. If you want to change it, you can disable the Karryn the Lover feature from the Karryn Babe mod, though to be clear, there's nothing actually broken here; it's functioning as intended. I already recommended disabling that feature in one of my earlier posts.
Yes I have tested it. this is pretty simple postBattleCleanup will get invoke after every battle I have check into the source the game does not have postOfficeBattleCleanup or something like that it have to use postBattleCleanup I just add variable condition true to preDefeatedGuardBattleSetup and check it in postBattleCleanup and reset it to false.
 
  • Like
Reactions: Purple_Heart
Apr 1, 2023
31
15
I dont know if anyone can help me with mods but the body hair mod doesn't show up for me in cut ins and I don't know why it isnt working. Here is my modlist am I missing something or doing something wrong? The body hair mod works it's just in the cut ins that it doesnt show up
 

Kisara01

New Member
Sep 16, 2019
2
0
Pre-Modded Game Upload (Karryn's Prison v1.3.0.95) – Two Versions Available!

As promised, I’ve uploaded a pre-modded version of the game. You can choose between two versions:

• Modded: Includes all listed mods with mostly default or untouched settings.
• Modded + My Edits: Same mod list, but heavily tweaked for a much easier and streamlined gameplay experience.

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



Important Notes:

  • These versions have not been thoroughly tested. They were only checked to ensure the game launches, can start a new game, and can load existing saves. You may encounter bugs, or unexpected behavior, use at your own discretion.
  • Due to the number of mods and custom tweaks involved, it is strongly recommended to start a new playthrough or create a separate save file when using these versions. Using old saves may result in instability or conflicts.
  • I've just realized that both the Hide HUD mod and the Karryn Babe mod use the same keybind: "H". Unfortunately, I can't re-upload the entire game just to resolve this minor conflict. If you plan to use either of these mods, I recommend manually changing the keybind to avoid issues. You can do this from the main menu by navigating to: Settings > Mods > Hide HUD > Shortcut to toggle HUD or Settings > Mods > Karryn Slutty > Shortcuts > In Battle > Remove Bliss state


bro . is there any way to turn off her skin color mod
 
4.60 star(s) 482 Votes