You can get any title, and I suspect passives are the same way, you want by changing the requirements for it in your files. Then sleeping and you should acquire it when you wake up, though occasionally some of them seem to require a different one first for some reason so you might need to sleep up to three times for everything. The mod/tweak guide linked from the first page sort of hints at this, but here is a more direct explanation.Does anyone have an unlocker or trainer or other program I can use to unlock titles in my playthrough? I just spent I don't know how many hours going for the "Beauty and the Butthole" title, and when I finally got a rogue to start a rimjob scene, I got the passives for first rimjob and first kiss after the battle, but no title. I felt like I got totally screwed over, so by this point I just want to cheat the title in and get to playing the rest of the game already.
First of all, always backup your save file and the file you are going to change when modding games. For titles the file you want to change is
RemtairyKarrynTitles.js
located in www\js\plugins folder from your main Karryn's Prison folder. Then open the file with a text editor, personally I use Notepad++ because of useful color highlights. Since you mentioned the rimjob one I believe it's around line 333 and looks like this:
Code:
if(!actor.hasThisTitle(TITLE_ID_FIRST_KISS_TO_ANUS) && actor._firstKissWasAnus) {
this._newTitlesGainedItem.push($dataArmors[TITLE_ID_FIRST_KISS_TO_ANUS]);
}
&& actor._firstKissWasAnus
. This will change it so the only requirement for the title is to not have it already. Now the section should look like this:
Code:
if(!actor.hasThisTitle(TITLE_ID_FIRST_KISS_TO_ANUS) ) {
this._newTitlesGainedItem.push($dataArmors[TITLE_ID_FIRST_KISS_TO_ANUS]);
}
Last edited: