Sepheyer

Well-Known Member
Dec 21, 2020
1,570
3,767
The answer is here:

https://f95zone.to/threads/karryns-prison-v1-0-5f-full-remtairy.33777/post-7142500

-----------
When installing the CCMod I get a "Loading error": "Failed to load: img/statusmenu/statusWindow_Anus_Aroused.png".

The game version is 1.0.5f , the CCMod is today's (March 27th, 2022). I used the release set of "www". There are 12 files overwritten when I copy the www set to the game's folder. The game is a completely fresh unzipped install.

Error's screenshot attached.

Can someone please tell me what I am doing wrong?

Thank you.
 
Last edited:

Milleniumt

Member
May 20, 2021
132
122
Can I ask a question?

Is there actually any point in updating the version of the game I have right now (v 1.0.5a or b?) or is it better to just wait for an actual major update?
 

Darkanna

Newbie
Mar 15, 2022
51
30
Can I ask a question?

Is there actually any point in updating the version of the game I have right now (v 1.0.5a or b?) or is it better to just wait for an actual major update?
There's good cut-ins and stuff being added. If you're modded, I wouldn't update just yet. If you're unmodded, shouldn't make a difference.

If you're even slightly sick of the game, this might be a good time to play some other player character gone wild game so the total mass of new content breathes a full breath of life back into it when you pick it up again.
 

Sepheyer

Well-Known Member
Dec 21, 2020
1,570
3,767
Can I ask a question?

Is there actually any point in updating the version of the game I have right now (v 1.0.5a or b?) or is it better to just wait for an actual major update?
Do you have the CCMod? That thing is worth the install together with updating to 1.0.5.f.
 

Vetto

Newbie
Nov 13, 2017
28
42

zoomies

Well-Known Member
Jun 4, 2017
1,051
863
The Choicebox is positioned left, thats the issue.
If you use RPGMaker Mv it should be self explanatory.
You don't have permission to view the spoiler content. Log in or register now.
i did not know where to look in order to move the box. i did remove it for now, but relocating is better. i've never done anything with rpgmaker, so thanks for the info! i decrypted the game, and the images from the mod now load. i also encrypted the images and that also worked.
also i am currently working on adding yasu in other location, but i keep getting script errors. as i said i have never done anything with rpgmaker, so any advice is welcome.
 
Last edited:

Chucke1992

Well-Known Member
Jun 11, 2017
1,117
691
With the mod, the reinforcement is so annoying. I finally beat level 3.
Wait, reinforcements are not the part of the main game? lol they are a headache but I thought they were the part of the game.


Is there a passive that makes Karryn pantyless all the time? Also when she wears nothing it seems like that subjugated floors become kinda "horny" or whatever that state is called. I don't remember it when I was playing before. Though I played last time around 0.7
 

Darkanna

Newbie
Mar 15, 2022
51
30
Wait, reinforcements are not the part of the main game? lol they are a headache but I thought they were the part of the game.


Is there a passive that makes Karryn pantyless all the time? Also when she wears nothing it seems like that subjugated floors become kinda "horny" or whatever that state is called. I don't remember it when I was playing before. Though I played last time around 0.7
Reinforcements are a random chance, it's quite low, in vanilla. You can change it but I'm focused on finding the change I made in my game for your second question.

Open RemtairyKarryn.js
Find this:

Game_Actor.prototype.putOnPanties = function() {
this._wearingPanties = true;
this._lostPanties = false;
};

Change it to this:

Game_Actor.prototype.putOnPanties = function() {
this._wearingPanties = false;
this._lostPanties = false;
};

The unfortunate side effect is that the variable that counts how many times she's had her panties taken off won't go up, so you might miss out on two passives that I'm vaguely aware of. Incidentally it's possible for her panties to be stolen so she wakes up without them, but I'm not entirely sure how much content is contained in that scenario, I don't think it's much.

Again, sorry for the tl;dr but I'm sometimes not sure how else to communicate things.
 
  • Like
Reactions: Sepheyer

Bloemkool

Well-Known Member
Aug 13, 2017
1,147
1,009
Wait, reinforcements are not the part of the main game? lol they are a headache but I thought they were the part of the game.


Is there a passive that makes Karryn pantyless all the time? Also when she wears nothing it seems like that subjugated floors become kinda "horny" or whatever that state is called. I don't remember it when I was playing before. Though I played last time around 0.7
Reinforcements is a mod, only lizardmen should have that ability.
 

mr.ed007

Newbie
Nov 17, 2017
23
9
I don't know all, but there is at least 4 bad endings. I personally triggered 2 bad endings.
Bad endings are result of missmanagment of economical part of the game.
For running out of order I've only had two with slight text variation, correct?
 

Talilover

Member
Oct 29, 2018
159
577
Tell you what this game desperately needs? A gallery/ event replay mode. Sometimes you just wanna see the bar game/ reception cgs without pretending like the mini games themselves are fun to play

Also how do you go about turning off autosaves? Would like to be able to just have a semi-gallery save where I can catch some dick without having to worry about progressing in days and what not
 
  • Like
Reactions: floran

Darkanna

Newbie
Mar 15, 2022
51
30
I don't understand how to play this game, anyone help ?
Can you be more specific? I'd be happy to help but I don't know what you're struggling with.
The only general advice I can give is: Either choose fighting, or fucking. Go into the prison and do what you love. If you want fucking, you'll have to purposefully lose a few times until Karryn "breaks." The rest should become obvious over time.
 
  • Like
Reactions: thevideowatcher65

Darkanna

Newbie
Mar 15, 2022
51
30
Tell you what this game desperately needs? A gallery/ event replay mode. Sometimes you just wanna see the bar game/ reception cgs without pretending like the mini games themselves are fun to play

Also how do you go about turning off autosaves? Would like to be able to just have a semi-gallery save where I can catch some dick without having to worry about progressing in days and what not
RemtairyPrison.js

~line 1438, or search for "Save Menu"
How it looks normally:

//Save Menu
Game_Party.prototype.canOpenSaveMenu = function() {
return this.easyMode() || $gameSwitches.value(SWITCH_TEST_MODE_ID) || (Prison.freeMode() && ConfigManager.cheatDisableAutosave);
};


Change it to this:

//Save Menu
Game_Party.prototype.canOpenSaveMenu = function() {
return true;
};


Pick a slot in your save list, perhaps the last one, to act as your "idgaf" save. Save to that slot after loading your regular game and the autosave will save to that slot as well. It's a good enough workaround, I've found. When you want to go back to playing after you've washed your hands, reload the original save.
 
Last edited:
4.60 star(s) 444 Votes