Regelious

Member
Aug 17, 2018
255
2,695


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,098
1,930
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

Member
Jan 3, 2019
488
293
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
33
2
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
142
542
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
272
581
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.
 

Rannug

Member
Apr 23, 2019
164
229
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.
mine has 253 SL and 180 Corruption and is a Sadist.
 

zoomies

Well-Known Member
Jun 4, 2017
1,049
850
anybody know how to enable debug mode? there are a few things i saw in the codes i'd like to try such as:
SKILL_DEBUG_DEFEAT_ALL_ID
SKILL_DEBUG_STRIP_CLOTHES_ID
 

Mankey123

Member
Feb 25, 2021
198
48
Yeah I think im going to wait unti lthe full game is released I want to fully enjoy the game in one go not wait for months to get a small piece every time
 
4.60 star(s) 396 Votes