is there anyway to make her naked in the newest versions all the time?
Comment = // in front of the script you want to disable.
Open file RemtairyKarryn.js and search for the following lines (line 1107 in v0.4u) and comment out the two lines in the middle as followed:
Original code
this.restoreClothingDurability();
if(!this._lostPanties) this.putOnPanties();
Nude Code
//this.restoreClothingDurability();
//if(!this._lostPanties) this.putOnPanties();
Full Script of the line with Nude code
JavaScript:
//Post Battle
Game_Actor.prototype.postBattleCleanup = function() {
this.setAllowTachieUpdate(false);
this._emoteMasterManagerIsRunning = false;
this._dontResetSexPose = false;
this._orgasmCallQueuedUp = false;
this._isCurrentlyUsingSkewer = false;
//this.restoreClothingDurability();
//if(!this._lostPanties) this.putOnPanties();
this.turnOffCantEscapeFlag();
this.resetCockTargets();
this.removeAllToys();
this.disableAllPoseSkills();
this.clearParamExp();
this.clearTempRecords();
this.cleanUpLiquids();
this.resetDesires();
this.postBattlePleasure();
this.enableMentalPhase();
this.setWardenMapPose();
this.setAllowTachieUpdate(true);
};
2.) Wake up naked. Ofc including panties if you wish
Spoiler: code tweak
Open file RemtairyPrison.js, search for the following lines (line 936 in v0.4u) and comment out the three lines at the bottom as followed and add the two lines above those lines: (commented lines start with "//")
JavaScript:
// Advance Next Day
Game_Party.prototype.advanceNextDay = function() {
let actor = $gameActors.actor(ACTOR_KARRYN_ID);
let alreadyCountedMaxOrder = false;
if(this.order === 100) {
this._daysInMaxOrder++;
alreadyCountedMaxOrder = true;
}
this.increaseDayCount(1);
this.resetSpecialBattles();
this.nextDayRiotManager();
this.increaseOrderFromEquippedTitles(false);
this.increaseOrderFromDayChange();
this.respawnAnarchyEnemies();
this.increaseDaysInRioting();
if(this.order === 100 && !alreadyCountedMaxOrder)
this._daysInMaxOrder++;
this.gainGold(this.calculateBalance(false));
if(this._gold === 0) {
this.titlesBankruptcyOrder();
this._daysInBankruptcy++;
this._gold = 0;
}
this.checkForNewTitle();
//todo: check for this.hasNoOrder() then game over
actor.getNewDayEdictPoints();
actor.removeClothing();
actor.stripOffPanties();
//actor.putOnPanties();
//actor.passiveWakeUp_losePantiesEffect();
//actor.restoreClothingDurability();
actor.resetArtisanMeal();
actor.cleanUpLiquids();
$gameScreen.setMapInfoRefreshNeeded();
};