shadowguy128
Newbie
- Feb 15, 2020
- 18
- 2
Both lines.
I cant find the line. The entire file is just mashed together in Notepad
Both lines.
can you send that file here? For some reason mine doesn’t contain anything related to those linesDeleting/commenting out lines inside this if statement should prevent her from giving birth, making her permanently pregnant.
View attachment 3209813
There's a reputation decay on the jobs if you do not do them on some days, iirc there's 4-5 days of time before the decay happens so you not have to do every job on the same day.Why does the gym reputation always reset to zero? is that supposed to be a thing?
So I might have time to make another small contribution of assets or I might not. Depends on how things go, but I was playing around with this. I used the guard defeat as a base because I thought it made the most sense pose wise.
You don't have permission to view the spoiler content. Log in or register now.
I wouldn't have the knowledge to implement it myself, but I could make the required stuff potentially for the scenes. If anyone's interested in picking this up lemme know.
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.