momozahara2
Newbie
- Mar 6, 2018
- 28
- 28
this one is from slutty babe in cut-in sectionHow do I remove these infinite animations from the moded version? (The BJ an TJ in this image)
View attachment 4930149
this one is from slutty babe in cut-in sectionHow do I remove these infinite animations from the moded version? (The BJ an TJ in this image)
View attachment 4930149
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.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
thanks, I just didn't see that the mod version was simplifiedWell, 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.
Been abandoned AFAIK.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.
...What?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?
huh. I guess the search function did me dirty. or I'm just legally blind. mb and ty.
here is a quick fix I did. I forgot one thing did guard defeated also result in defiled halberd?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.
(() => {
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);
};
})()
karryn the lover seem to break the game for me everyone include karryn pleasure always result in decreasing make the combat stuck.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.
You must be registered to see the links
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
no :3can u guys drop a link game with full mods pls :3 thanks so much
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?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); }; })()
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.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.
Yes I have tested it. this is pretty simpleYes, 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.
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.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.
You must be registered to see the links
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