King_Ogre

Member
May 18, 2021
312
714
Good god...this emperor is full of shit NGL...Karryn ought to rebel against that dumbfk instead of following his "wise decision".
In the end I want to imagine how Karryn was "Humbled"on her wedding night by being filled to the brim in front of him
 

Timendo

NTR Connoisseur
Donor
Jan 31, 2018
418
1,846
Can we see any sort of "progress" update for the CCMod ? Or do we just wait on gitgud. io for the said updates
 

Regelious

Member
Aug 17, 2018
255
2,697


v8.j


  • In the Receptionist side job when there's a request that Karryn can not accept, all other skills except Reject Request will be disabled.
  • Visitors in the Receptionist side job will no longer put their finger in Karryn's mouth instead of kissing her.
  • Fixed a CG bug when Karryn falls down to floor on her butt.
  • Minor bugs fixed.
  • Minor typos fixed.
 

madchef

Well-Known Member
Jan 10, 2020
1,179
2,087
Yea so I never really thought about it but, since Karryn got the hots for the Emperor, wouldn't that mean this game is NTR?
No. They're not a couple, so there is no infidelity whatsoever. The fact that you fancy someone doesn't make you in any way engaged.

The Emperor has only sent another letter to her, which is not even an official proposal.
 

Hmong-sama

Active Member
Jan 3, 2019
600
368
Woohoo! New update! Let's go! Level 4 here I come! Now I just hope I don't lose save data after installing the new one and deleting the old one.
 
  • Like
Reactions: Beats9821

krex44

Newbie
Mar 5, 2020
34
5
how do i change the requirements for the wide open pussy kick passive? i have already earned the victim of sex counterattack passive. i also changed the values for [passive_kick_counter_sex_count_two_id] and [passive_kick_counter_sex_count_three_id] in the remtairykarrynpassives.js to 2 and 3 respectively. i have been making karryn go get kick counter sexed however i still don't get the passive that would give her the light kick skill.
 

srx47

Member
May 8, 2018
164
643
For those who want all sex skills from start
in RemtairyKarrynSex.js
Code:
///////////
// Sex Skill Passive Requirement

Game_Actor.prototype.karrynKissSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_KISS_PEOPLE_TWO_ID);
};
Game_Actor.prototype.karrynCockStareSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_KARRYN_STARE_COCK_ONE_ID);
};
Game_Actor.prototype.karrynCockPetSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_HJ_COUNT_THREE_ID);
};
Game_Actor.prototype.karrynHandjobSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_HJ_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynRimjobSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_RIMJOB_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynFootjobSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_FOOTJOB_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynBlowjobSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_BJ_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynTittyFuckSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_TITTYFUCK_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynPussySexSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_PUSSY_SEX_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynAnalSexSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_ANAL_SEX_COUNT_TWO_ID);
};
Game_Actor.prototype.karrynHasAnySexSkill = function() {
    return this.karrynKissSkillPassiveRequirement() || this.karrynCockStareSkillPassiveRequirement() || this.karrynCockPetSkillPassiveRequirement() || this.karrynHandjobSkillPassiveRequirement() || this.karrynRimjobSkillPassiveRequirement() || this.karrynFootjobSkillPassiveRequirement() || this.karrynBlowjobSkillPassiveRequirement() || this.karrynTittyFuckSkillPassiveRequirement() || this.karrynPussySexSkillPassiveRequirement() || this.karrynAnalSexSkillPassiveRequirement();
};
replace with
Code:
Game_Actor.prototype.karrynKissSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynCockStareSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynCockPetSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynHandjobSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynRimjobSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynFootjobSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynBlowjobSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynTittyFuckSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynPussySexSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynAnalSexSkillPassiveRequirement = function() {
    return this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
};
Game_Actor.prototype.karrynHasAnySexSkill = function() {
    return this.karrynCockStareSkillPassiveRequirement();
};
in RemtairyEnergy.js
Code:
//////////
// Open Pleasure
// Pleasure Stance
//////////////

Game_Actor.prototype.skillCost_openPleasure = function() {
    return 0;
};

Game_Actor.prototype.showEval_openPleasure = function(multiTurnVersion) {
    let hasPassive = this.hasPassive(PASSIVE_SEXUAL_PARTNERS_TOTAL_TWO_ID);
    
    if(multiTurnVersion) {
        if(!hasPassive)
            return false;
    }
    else if(!hasPassive && this.energy > 0)
        return false;
    
    return (this.isInSexPose() || this.isInDownPose()) && !this.justOrgasmed();
};
replace with
Code:
//////////
// Open Pleasure
// Pleasure Stance
//////////////

Game_Actor.prototype.skillCost_openPleasure = function() {
    return 0;
};

Game_Actor.prototype.showEval_openPleasure = function() {
    let hasPassive = this.hasPassive(PASSIVE_SECRET_CURIOSITY_ID);
    
    if(multiTurnVersion) {
        if(!hasPassive)
            return false;
    }
    else if(!hasPassive && this.energy > 0)
        return false;
    
    return (this.isInSexPose() || this.isInDownPose()) && !this.justOrgasmed();
};
the rest in RemtairyWillpower.js
You can get Secret Curiosity in prologe battle, just let any desire max.
Here is scree from first battle:
1621877896105.png
 
Last edited:

Morfina

New Member
Sep 24, 2019
9
3
You don't have permission to view the spoiler content. Log in or register now.
How much corruption and slut lvl did your Karryn had? Mine had 295SL and 76 Corruption and her monologue was a bit different. She was a little sorry for being such a slut but was thinking that living slut queen live is not bad either. No cumming while fantasizing tho.
 

fart1111

Member
Oct 31, 2019
283
603
How much corruption and slut lvl did your Karryn had? Mine had 295SL and 76 Corruption and her monologue was a bit different. She was a little sorry for being such a slut but was thinking that living slut queen live is not bad either. No cumming while fantasizing tho.
Like 310, over 100 corruption, and a huge masochist.
 
4.60 star(s) 481 Votes