There's a debug command to unlock all the passives?
I don't think I ever saw something like that in the thread...can someone enlighten me?
Here ya go. Don't forget to remove the change after you get all the passives, or the game will continue to give you duplicates. Also it works better if you don't already have any passives.
Locate in RemtairyPrison.js
Code:
Game_Party.prototype.advanceNextDay = function()
Add this (taken from RemtairyDebugMode.js) to the function.
Code:
if(true) {
for(let i = PASSIVES_LIST_START_ID; i <= PASSIVES_LIST_END_ID; i++) {
$gameActors.actor(ACTOR_KARRYN_ID).setCharacterCreatorPassive(i);
}
for(let i = PASSIVES_LIST_TWO_START_ID; i <= PASSIVES_LIST_TWO_END_ID; i++) {
$gameActors.actor(ACTOR_KARRYN_ID).setCharacterCreatorPassive(i);
}
}
Then sleep once, let the game save, then quit and remove it then relaunch (there's probably no negative for leaving it in since I don't think RPGMV lets you learn the same skill multiple times, but don't complain if your game breaks). Getting the passive ability is what unlocks active skills. It seems there are currently 171 passives total. This will turn the character into a nympho from day 2 with zero inhibitions.
Something I found while digging into this is that there is a 'Cock Kick' skill that Karryn can learn which I imagine many probably didn't know existed because the requirements to learn it are fairly steep: KO 100 enemies that have an erection. It's basically a 1hitKO skill to any enemy with an erection.
If you would rather just add individual passives, you can always just alter the requirements for the passives you want in RemtairyNewPassives.js.
Game_Actor.prototype.checkForNewBlowjobPassives = function() {
if(!this.hasPassive(PASSIVE_BJ_COUNT_ONE_ID) && this._recordBlowjobCount >= 5) {
this.learnNewPassive(PASSIVE_BJ_COUNT_ONE_ID)
}
else if(!this.hasPassive(PASSIVE_BJ_COUNT_TWO_ID) && this._recordBlowjobCount >= 20 && this._recordMaxReachedMouthDesireCount >= 3 && this._recordMaxReachedCockDesireCount >= 3) {
this.learnNewPassive(PASSIVE_BJ_COUNT_TWO_ID)
}
else if(!this.hasPassive(PASSIVE_BJ_PEOPLE_ONE_ID) && this._recordBlowjobPeople >= 10) {
this.learnNewPassive(PASSIVE_BJ_PEOPLE_ONE_ID)
}
else if(!this.hasPassive(PASSIVE_BJ_PEOPLE_TWO_ID) && this._recordBlowjobPeople >= 30) {
this.learnNewPassive(PASSIVE_BJ_PEOPLE_TWO_ID)
}
else if(!this.hasPassive(PASSIVE_BJ_PEOPLE_THREE_ID) && this._recordBlowjobPeople >= 69) {
this.learnNewPassive(PASSIVE_BJ_PEOPLE_THREE_ID)
}
else if(!this.hasPassive(PASSIVE_BJ_PEOPLE_FOUR_ID) && this._recordBlowjobPeople >= 125) {
this.learnNewPassive(PASSIVE_BJ_PEOPLE_FOUR_ID)
Just change all the numbers to 1, 2, 3, 4, 5, etc... and you will get the perks quickly, without having to worry about hacking them in.