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.
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]);
}
Simply delete
&& 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]);
}
Save the file, close the game, and start the game back up. Now rest and you should get the title you wanted on the new day. I hope everything was clear enough.