how do i change the prisoner mode only starting stuff to be for all modes like whole body passives and such please answer
The game is set to disable Prisoner Mode-exclusive Passives if not in Prisoner Mode in
RemtairyPrison.js
in the function
Game_Party.prototype.checkCharacterCreatorDifficultyExclusives
(line 956 in v0.7A.k). If you want to switch difficulties but keep your passives, you could change
if(!this.hardMode()) {
on line 959 to
if(false) {
Since false will never be true, the function won't do anything anymore.
If you wanted to give yourself the passives in a save file that didn't start in Prisoner Mode (or for some reason give yourself multiple starting passives) , you could probably use a similar strategy to the "enable the starting title which unlocks getting 3 edict points" (You still will have to do the first part in order to prevent the changes from being undone):
Simply put the following in the function
Game_Party.prototype.advanceNextDay
(starts around line 1140 in v0.7A.k) after the line that says
let actor = $gameActors.actor(ACTOR_KARRYN_ID);
to add the Prisoner Mode passives after sleeping once (there won't be a message):
actor.learnNewPassive(CHARA_CREATE_TWO_BODY_ID); //Whole Body Sensitivity
actor.learnNewPassive(CHARA_CREATE_THREE_ONANI_ID); //Masturbation Desire
actor.learnNewPassive(CHARA_CREATE_THREE_SADO_ID); //Sadist Desire
actor.learnNewPassive(CHARA_CREATE_THREE_MAZO_ID); //Masochist Desire
(To remove any old passives, check the mod list under "change/add sensitive body part". Speaking of which, there is no CHARA_CREATE_TWO_PETTING_ID" anymore. That is now "CHARA_CREATE_TWO_BODY_ID". )
Remember that adding the lines to teach yourself the passives is useless outside of Prisoner Mode unless you also disable the function that removes them outside of Prisoner Mode!