You find the conditions for the sex skills in theit worked for me, I went to the file, clicked the right button, pressed edit, opened it in the notepad, pressed ctrl f, wrote as it was taught and just saved.
I'm looking now for a file to edit and try to start the game with the sexual skills already activated, or to get them in an easier way.
RemtairyKarrynSex.js
file starting line 418 (v0.4u). Look for the functions starting with showEval_
, they determine if the skill can be chosen. The sex skills are unlocked with the passives. Which passives you need is mostly stated in the first line of the function:Game_Actor.prototype.showEval_karrynKissSkill = function() {
let hasPassive = this.hasPassive(PASSIVE_KISS_PEOPLE_TWO_ID);
if(!hasPassive) return false;
let bodySlotAvailable = this.canGetKissed(KISS_LVL_ONE);
let isThereValidTarget = this.isThereValidTargetForKiss();
let meetDesireReq = this.canGetKissed(KISS_LVL_ONE);
return isThereValidTarget && bodySlotAvailable && meetDesireReq;
};
PASSIVE_KISS_PEOPLE_TWO_ID
passive. You can then go to the file RemtairyNewPassives.js
and search for that passive. You can then edit the requirements to obtain that passive to get it easier. For example you could change the values for unlocking the kissing passive to >= 0
and get the passive after any battle instantly in the following line:else if(!this.hasPassive(PASSIVE_KISS_PEOPLE_TWO_ID) && this._recordKissedPeople >= 20 && this._recordMaxReachedMouthDesireCount >= 2) {
this.learnNewPassive(PASSIVE_KISS_PEOPLE_TWO_ID)
}
yeah that's why I did but I miss those lines you put on your my bad >_<Dunno, if that's the right word, but I call my little changes in the code 'tweaks' because they are so small, they don't deserve the title 'mod'
But yeah, you open the files I mention with any text editor. You can use the standard one, but I recommend something more advanced like Notepad++ or VSCode if only for syntax highlighting. But the choice is yours..
Most of my tweaks only consist of changing/deleting/adding a few lines. I try to find the simplest way for you guys to replicate, not the most efficient way. So in the first tweak of the post you are referring to, the easiest way to see what you have to do is read the instruction (duh) and compare it to the code you see. The code I pasted contains two lines which are different to the code you will see in your file. They contain a '//' in front (also notice the colour change). Change your lines so they look like the code I posted and it should work. Instead of commenting out you can always delete those lines if you wish.
Both have been there for a while I believe. The toilet one I'm pretty certain is the defeat DP gangbang scene for floor 2 that'll be added with the update. The other one I'm not sure if they commented about it being in the update too or not.Wanting to check this; I looked at this games page on Remtairy's website (You must be registered to see the links). Two images on the page show scenes that I have never seen. One is Karryn in the toilet up against the urinal and the other is Karryn in bed. I believe that the toilet one is a planned scene that just isn't in the game yet, will probably come with the next main version (0.5). However I am not aware of the second scene of Karryn in a bed. Does anybody know what this is?
It's the unimplemented loss scene for the guards and room invasions.However I am not aware of the second scene of Karryn in a bed. Does anybody know what this is?
The other one I'm not sure if they commented about it being in the update too or not.
IIRC it'll also be in the next update. (HYPE!)It's the unimplemented loss scene for the guards and room invasions.
Same. I was expecting next week would probably be the update release, but it'd be awesome if we got surprised with it this week.Damn, I hope the weekly update is late cause we get update. I will have a nice weekend if so. Let's hope for the best!
It is annoying that there is no struggle mechanic at all. And I wonder how you even force a trained woman with a halberd to give you a rimjob without knocking her down first.There is no inconsistency anywhere and if you do not like "rape" scenes then i can recommend you one simple trick as they say on the internet - do not play this game, case solved.
You can think of desire as more the body's reactions to the stimulus. Body's Reaction vs. Willpower/Choice are two different things.It is annoying that there is no struggle mechanic at all. And I wonder how you even force a trained woman with a halberd to give you a rimjob without knocking her down first.
Also it is hardly rape if you have to up her desire for that particular scene first. Maybe a good design would be for her to become dominant and change stances herself.
Hopefully! Although it does seem that Remtairy posts updates on either Mondays or Wednesdays typically, so it might just be a Wednesday update week.Damn, I hope the weekly update is late cause we get update. I will have a nice weekend if so. Let's hope for the best!
I actually want to learn how to edit off undesired passives that I unfortunately gained in my play through from my save.I appreciate any feedback regarding the explanation (if anything is unclear) or structure of this collection. (Drop me a pm or post it here)