- Jul 9, 2018
- 44
- 9
suhikun mods are outdated he will update his cg after the new boobs size will be released if you want to play with suhikun mod you need to download the the game before the smaller size boobs update came.anyone got a working link to suhikun mods?
Remtairy discord server should still have it.I'm using the non updated version of the game my issue is that the links lead to 404s
Deleting/commenting out lines inside this if statement should prevent her from giving birth, making her permanently pregnant.
View attachment 3209813
Karryn's Prison\www\js\plugins\RemtairyPrison.js
with any text editor (Windows built-in Notepad works just fine), and search for "Can Save" (without quotation marks), you'll find this section://////////
// Can Save
////////////
//Save Menu
Game_Party.prototype.canOpenSaveMenu = function() {
return this.easyMode() || $gameSwitches.value(SWITCH_TEST_MODE_ID) || (Prison.freeMode() && ConfigManager.cheatDisableAutosave);
};
//Save Menu
Game_Party.prototype.canOpenSaveMenu = function() {
return true;
};
Karryn's Prison\www\js\plugins\YEP_X_Autosave.js
, search for "getCurrentAutosaveSlot", the first match would lead you to this section://=============================================================================
// StorageManager
//=============================================================================
StorageManager.getCurrentAutosaveSlot = function() {
return this._currentAutosaveSlot;
};
StorageManager.setCurrentAutosaveSlot = function(savefileId) {
this._currentAutosaveSlot = savefileId;
};
StorageManager.performAutosave = function() {
if ($gameMap.mapId() <= 0) return;
if ($gameTemp._autosaveNewGame) return;
if (!$gameSystem.canAutosave()) return;
SceneManager._scene.performAutosave();
};
setCurrentAutosaveSlot
) so it sets the autosave slot to specific slots instead of the current/last saved slot. Before we begin, you need to decide how you'd like the autosave feature to work:StorageManager.setCurrentAutosaveSlot = function(savefileId) {
this._currentAutosaveSlot = 1;
};
StorageManager.setCurrentAutosaveSlot = function(savefileId) {
this._currentAutosaveSlot = savefileId < 13 ? 12 : 24;
};
StorageManager.setCurrentAutosaveSlot = function(savefileId) {
this._currentAutosaveSlot = savefileId < 13 ? 1 : 13;
};
Karryn's Prison\www\js\plugins.js
and search for "Max Files", you'll find this line starting with "YEP_SaveCore":{"name":"YEP_SaveCore","status":true,"description":"v1.06 Alter the save menu for a more aesthetic layout\nand take control over the file system's rules.","parameters":{"---General---":"","Max Files":"24","Saved Icon":"231","Empty Icon":"230","Return After Saving":"true","Auto New Index":"true","---Action Window---":"","Load Command":"Load","Save Command":"Save","Delete Command":"Delete","---Help Window---":"","Select Help":"Please select a file slot.","Load Help":"Loads the data from the saved game.","Save Help":"Saves the current progress in your game.","Delete Help":"Deletes all data from this save file.","---Delete---":"","Delete Filename":"Damage2","Delete Volume":"100","Delete Pitch":"150","Delete Pan":"0","---Info Window---":"","Show Game Title":"false","Invalid Game Text":"This save is for a different game.","Empty Game Text":"Empty","Map Display Name":"true","Party Display":"2","Party Y Position":"this.lineHeight() + Window_Base._faceHeight","Show Actor Names":"true","Name Font Size":"20","Show Actor Level":"true","Level Font Size":"20","Level Format":"\\c[16]%1 \\c[0]%3","Data Font Size":"20","Data Column 1":"PRISON LEVEL, date, order, control, corruption","Data Column 2":"location, income, expense, gold count, title count","Data Column 3":"DIFFICULTY, TOTAL DAYS, TOTAL PLAYTHROUGHS, TOTAL GAMECLEARS, playtime","Data Column 4":"","---Vocabulary---":"","Map Location":"","Playtime":"Playtime:","Save Count":"Total Saves:","Gold Count":"%1:","---Technical---":"","Save Mode":"auto","Local Config":"config.rpgsave","Local Global":"global.rpgsave","Local Save":"file%1.rpgsave","Web Config":"RPG %1 Config","Web Global":"RPG %1 Global","Web Save":"RPG %1 File%2","---Confirmation---":"","Load Confirmation":"true","Load Text":"Do you wish to load this save file?","Save Confirmation":"true","Save Text":"Do you wish to overwrite this save file?","Delete Confirmation":"true","Delete Text":"Do you wish to delete this save file?","Confirm Yes":"Yes","Confirm No":"No"}},
YEP_X_Autosave.js
)StorageManager.setCurrentAutosaveSlot = function(savefileId) {
this._currentAutosaveSlot = Math.ceil(savefileId / 10) * 10;
};
StorageManager.setCurrentAutosaveSlot = function(savefileId) {
this._currentAutosaveSlot = Math.ceil(savefileId / 10) * 10 - 9;
};
_currentAutosaveSlot
works if the savefileId
IS the autosave slot for that range.StorageManager.setCurrentAutosaveSlot = function(savefileId) {
this._currentAutosaveSlot = savefileId > 23 ? 1 : savefileId + 1;
};
The game's discord has gathered a large number of modders and programmers who will help turn your pictures into a mod.If anyone else has any interesting ideas that they need art for reach out to me, I'd like to hear them. Personally I think it'd be fun to add an entire other side job, but it'd be a hell of a lot of work.
I'm using the non updated version of the game my issue is that the links lead to 404s
Crashing game? At this time of year! At this time of day! In this part of the country! Localized entirely within your kitchen?!?i got an issue my game dosent upload when i click the game to open. how do i get it to work???
HOT DAMNTook way less time than I expected. Here's the preview and the files for all the humanoids. I'd also like to do the werewolves, but it'll be later. The Yetis will probably take significant redrawing, but I also want to do them.
I'm also considering doing the stripper minigame as it could be a fun place for birth scenes too. Don't know how hard this would all be to implement. I've attached a rar with the assets as well, but once again, these are just assets its not a full mod so someone else would have to implement them.
You don't have permission to view the spoiler content. Log in or register now.
If anyone else has any interesting ideas that they need art for reach out to me, I'd like to hear them. Personally I think it'd be fun to add an entire other side job, but it'd be a hell of a lot of work.
View attachment 3210433
Make the Yeti babies YUGETook way less time than I expected. Here's the preview and the files for all the humanoids. I'd also like to do the werewolves, but it'll be later. The Yetis will probably take significant redrawing, but I also want to do them.
I'm also considering doing the stripper minigame as it could be a fun place for birth scenes too. Don't know how hard this would all be to implement. I've attached a rar with the assets as well, but once again, these are just assets its not a full mod so someone else would have to implement them.
You don't have permission to view the spoiler content. Log in or register now.
If anyone else has any interesting ideas that they need art for reach out to me, I'd like to hear them. Personally I think it'd be fun to add an entire other side job, but it'd be a hell of a lot of work.
View attachment 3210433
Yes, you can now reduce her tits from K down to H cup in the options menu. It might not be as small as you might be looking for.So, I heard several months ago that this game is supposed to get an option at some point to get the protagonist to have smaller boobs. Is that out yet? I don't really want to play this until it is.
and god, i know, im one.analyzing this thread for some time, i can see many of us have problems, serious problems.