sunisinus

Active Member
Oct 6, 2017
507
178
The dev's got several platforms where they talk about upcoming development which anyone can read, including a Patreon (soon to be defunct), Subscribestar, Twitter, and Discord server, and there's people who crosspost the paywall posts to this thread which will in turn generally be discussed for a day or two and usually reposted once or twice.
thanks, I'll take a look at everything so I will have no more doubts.
 

ComradeBear

Newbie
Feb 16, 2018
45
68
depends on how you want to play. if you want a virgin run it's hard to unlock sex skills and passives. but you generally won't have any problem with the order. if you aim to get all available sex skills and passives (warning: you should grind a lot) you can lose on purpose a few times and after that, it just snowballs. but getting mind upgrades is a must.

edit: for a virgin run, focus on dmg and halberd upgrades. for a slut run, go for mind upgrades to survive lust dmg. that's quite simplified but will get u going
Oh, never even touched mind upgrades, thanks for the tip)Going for a slut run should I focus on "release desires" branch?
 
  • Like
Reactions: dragonmaster4

loka224

Member
Oct 10, 2018
458
282
Thanks for the updates, the saves and the general discussion here folks.

This is probably my favorite Game, besides Overgrown genesis.
You picked my interest and i would be curious to know what this game is,but the search in f95 gave no result,have you some links with infos on the game (dlsite or others)?
 
Sep 16, 2018
197
35
As long as you get exposed to said skills (for example, being forced to do a footjob to learn the footjob skill) you'll eventually learn the skill. You don't actually have to lose the battle. It takes more than just one footjob though, I think you need to get two passives in the category before unlocking the skill, and further ones to make it better.
But how do I get exposed to those skills? The only way I've done it is either lose, or just turtle combat and eventually it switched to a handjob sequence. Is there a faster way to get those?
 

TitmusPrime

Member
Apr 28, 2017
315
581
Don't think I have found any lines to be gross.... Example, for me gross starts with something like "Yummy, your smegma tastes better than the cheese from McDonald's.
I found the dialogue in the RemtairyLines.json file in /www/data/ and there's a lot of stuff about dick cheese and shit, stuff like that makes me physically cringe so I manually edited all of it out. Here's the modified one if others are too lazy to sift through the lines, I just replaced the overtly gross stuff with generic dirty talk.
 

Disarm

New Member
Sep 16, 2017
10
11
Mod is now updated for 0.7A.f on the dev branch. See

Important: Install instructions have changed. Read the readme.

Highlights:
1. New feature for waitress if you serve a wrong drink. Serving drinks is now an instant action.
2. Can equip toys at any bed after having them used on Karryn once. Toys give pleasure while walking around.
3. Bukkake is no longer ever fully cleaned up but slowly decays over time. Walking around covered in cum will give fatigue/pleasure based on passives.
***Above changes are all configurable.
4. Reorganized mod and moved all mod options into a config file. All general balance changes are now DISABLED by default. That means autosave is active again.

View attachment 931410

Read the readme for more information.

I'm guessing this mod won't work for 0.7A.g.2 yet correct? If it does work for the current version, could someone provide the steps to install it correctly?

Main game was decrypted + mod files added to main game directory, but just crashes.
 

voidzone247

Active Member
Mar 12, 2017
796
979
But how do I get exposed to those skills? The only way I've done it is either lose, or just turtle combat and eventually it switched to a handjob sequence. Is there a faster way to get those?
Basically what Karryn can get exposed to is all dependant on her desires. If you want to boost it along, you can use the Willpower skills that boost her desires. If you want to know the precise requirements, they are by default (pardon the code, but I can't be arsed to type them all out):

JavaScript:
Game_Actor.prototype.kissingMouthDesireRequirement = function(kissingLvl, karrynSkillUse) {
    let req = 75;
    if(kissingLvl === KISS_LVL_TWO) {
        req += 15;
    }
 
    if(this.hasPassive(PASSIVE_FIRST_KISS_ID)) req -= 15;
 
    if(this.isEquippingThisAccessory(RING_FINGERCLAW_ID)) req += 35;
    if(this.isEquippingThisAccessory(MISC_LIPGLOSS_ID)) req -= 20;
 
    return req;
};

Game_Actor.prototype.blowjobMouthDesireRequirement = function(karrynSkillUse) {
    let req = 100;
 

    if(this.isEquippingThisAccessory(MISC_PHONESTRAP_ID)) req -= 15;
 

    return req;
};

Game_Actor.prototype.suckFingersMouthDesireRequirement = function(karrynSkillUse) {
    let req = 50;
 
    return req;
};

Game_Actor.prototype.blowjobCockDesireRequirement = function(karrynSkillUse) {
    let req = 65;


    if(this.isEquippingThisAccessory(MISC_PHONESTRAP_ID)) req -= 15;
 

    return req;
};

Game_Actor.prototype.mouthSwallowCockDesireRequirement = function(karrynSkillUse) {
    let req = 100;
 
    if(this._denyingInternalEjaculations) {
        req += 5 + this.sadismLvl() * 2;
    }

    return req;
};

Game_Actor.prototype.handjobCockDesireRequirement = function(karrynSkillUse) {
    let req = 80;


    if(this.isEquippingThisAccessory(RING_SCORPION_ID)) req += 30;
    if(this.isEquippingThisAccessory(MISC_NAILPOLISH_ID)) req -= 20;


    return req;
};

Game_Actor.prototype.cockPettingCockDesireRequirement = function(karrynSkillUse) {
    let req = 50;


    return req;
};

Game_Actor.prototype.boobsPettingBoobsDesireRequirement = function(karrynSkillUse) {
    let req = 50;


    return req;
};

Game_Actor.prototype.nipplesPettingBoobsDesireRequirement = function(karrynSkillUse) {
    let req = 75;

    return req;
};

Game_Actor.prototype.tittyFuckBoobsDesireRequirement = function(karrynSkillUse) {
    let req = 100;
 
    if(this.isEquippingThisAccessory(MISC_EYELINER_ID)) req -= 15;
 

    return req;
};

Game_Actor.prototype.tittyFuckCockDesireRequirement = function(karrynSkillUse) {
    let req = 65;

    if(this.isEquippingThisAccessory(RING_PEARL_ID)) req += 20;
    if(this.isEquippingThisAccessory(MISC_EYELINER_ID)) req -= 15;


    return req;
};

Game_Actor.prototype.clitPettingPussyDesireRequirement = function(karrynSkillUse) {
    let req = 50;

    return req;
};

Game_Actor.prototype.cunnilingusPussyDesireRequirement = function(karrynSkillUse) {
    let req = 85;

    return req;
};

Game_Actor.prototype.pussyPettingPussyDesireRequirement = function(karrynSkillUse) {
    let req = 75;


    return req;
};

Game_Actor.prototype.pussySexPussyDesireRequirement = function(karrynSkillUse) {
    let req = 100;
 

    if(this.isEquippingThisAccessory(MISC_HIGHHEELS_ID)) req -= 15;
 

    return req;
}; 

Game_Actor.prototype.pussySexCockDesireRequirement = function(karrynSkillUse) {
    let req = 85;
 
    if(this.isEquippingThisAccessory(RING_CHAINHAND_ID)) req += 20;
    if(this.isEquippingThisAccessory(MISC_HIGHHEELS_ID)) req -= 15;
 

    return req;
};

Game_Actor.prototype.pussyCreampieCockDesireRequirement = function(karrynSkillUse) {
    let req = 100;
 

    if(this.isEquippingThisAccessory(RING_CHAINHAND_ID)) req += 20;
 
    if(this._denyingInternalEjaculations) {
        req += 5 + this.sadismLvl() * 2;
    }

    return req;
};

Game_Actor.prototype.buttPettingButtDesireRequirement = function(karrynSkillUse) {
    let req = 50;
 
    return req;
};

Game_Actor.prototype.spankingButtDesireRequirement = function(karrynSkillUse) {
    let req = 65;

    if(this.isEquippingThisAccessory(RING_MIDI_ID)) req += 20;

    return req;
};

Game_Actor.prototype.analPettingButtDesireRequirement = function(karrynSkillUse) {
    let req = 75;


    return req;
};

Game_Actor.prototype.analSexButtDesireRequirement = function(karrynSkillUse) {
    let req = 100;
 

    if(this.isEquippingThisAccessory(MISC_SCARF_ID)) req -= 15;
 

    return req;
}; 

Game_Actor.prototype.analSexCockDesireRequirement = function(karrynSkillUse) {
    let req = 85;

    if(this.isEquippingThisAccessory(RING_DOUBLE_ID)) req += 20;
    if(this.isEquippingThisAccessory(MISC_SCARF_ID)) req -= 15;
 

    return req;
};

Game_Actor.prototype.analCreampieCockDesireRequirement = function(karrynSkillUse) {
    let req = 100;
 
    if(this.isEquippingThisAccessory(RING_DOUBLE_ID)) req += 20;

    if(this._denyingInternalEjaculations) {
        req += 5 + this.sadismLvl() * 2;
    }

    return req;
};

Game_Actor.prototype.rimjobMouthDesireRequirement = function(karrynSkillUse) {
    let req = 100;
 
 
    if(this.isEquippingThisAccessory(RING_GOLDGLASS_ID)) req += 20;
 
    if(ConfigManager.disableRimjobs) return 999;
    return req;
};

Game_Actor.prototype.footjobCockDesireRequirement = function(karrynSkillUse) {
    let req = 65;
 
    if(this.isEquippingThisAccessory(RING_GOLDGLASS_ID)) req += 30;

    return req;
};

Game_Actor.prototype.clitToyPussyDesireRequirement = function(karrynSkillUse) {
    let req = 65;


    return req;
};

Game_Actor.prototype.pussyToyPussyDesireRequirement = function(karrynSkillUse) {
    let req = 110;

    if(this.hasPassive(PASSIVE_FIRST_SEX_ID)) req -= 20;

    return req;
};

Game_Actor.prototype.analToyButtDesireRequirement = function(karrynSkillUse) {
    let req = 85;

 

    return req;
};

Game_Actor.prototype.bodyBukkakeCockDesireRequirement = function(karrynSkillUse) {
    let req = 35;
 
    if(this._denyingExternalEjaculations) {
        req = Math.min(req + 10 + this.sadismLvl() * 5, this.faceBukkakeCockDesireRequirement());
    }
 
    return req;
};
Game_Actor.prototype.faceBukkakeCockDesireRequirement = function(karrynSkillUse) {
    let req = 90;
 
    if(this._denyingExternalEjaculations) {
        req += 5 + this.sadismLvl() * 2;
    }
 
    return req;
};
So, for example, the Mouth Desire requirement for someone to kiss Karryn is a base of 75, which gets boosted by another 15 if her kissing level is 2 or higher - but reduced by 15 if she gets the first kiss passive (which she'll have before she gets to level 2, so the level 2 just cancels out the first kiss passive). Further, you can increase or reduce it with certain accessories. Enjoy.

edit: Oh, btw, I may have raised some of those requirements I pasted above, as I've been trying to get the kick counter and stupid handjobs get in the way. But I didn't change many, or by very much. For the original list you can check RemtairyKarrynPassives.js in your own library.
 

voidzone247

Active Member
Mar 12, 2017
796
979
I'm guessing this mod won't work for 0.7A.g.2 yet correct? If it does work for the current version, could someone provide the steps to install it correctly?

Main game was decrypted + mod files added to main game directory, but just crashes.
I'm sure he'll push a new version once we know if g.2 is the final version of 0.7A.
 

Disarm

New Member
Sep 16, 2017
10
11
It's already updated. I don't see a reason to post for minor version updates when you can just look at the commit history.
Could you provide a quick rundown on how to install the mod properly? Apparently I'm doing it incorrectly, but can't seem to figure out the issue.

The install steps I followed don't seem to work, so trying to find where I went wrong.
 
Last edited:

Tsugumi

Well-Known Member
Oct 16, 2018
1,557
1,323
Oh, btw, I may have raised some of those requirements I pasted above, as I've been trying to get the kick counter and stupid handjobs get in the way.
I felt like sharing this for no other reason than having had the same goal. Since the sex moves are "skills", you can:

1. Find their IDs in Data/Skills.json;
2. Find those IDs in the skill list of enemies in Data/Enemies.json and add/remove as you see fit.

In my case, Cock Desire was rising faster than the rest, which resulted in guards initiating handjobs almost every fight and chaining them until Karryn orgasms and falls down....at which point guards would switch to a blowjob and chain that. So I removed both skills from all guards (there are 5 "types" as far as the Enemies.json entries are concerned) except one - so now only Karryn can initiate those -, and added the kick counter to all 5 of them (initially it is assigned only to one).
 
  • Like
Reactions: voidzone247

Kintaroe

Active Member
Apr 5, 2019
716
1,842
Go back to the alternate universe you came from, monster!
I love the replies! Too good. Kinda regret asking it, but at the same time, we wouldnt have a laugh.
My reason was mainly bcs of the genitals being badly drawn. No hate on the artist, he/she did a good job on the overall art, or else i wouldnt be interested in the game.
 
Last edited:
  • Like
Reactions: Beats9821 and Xill

drchainchair2

Member
Mar 28, 2020
307
833
I love the replies! Too good. Kinda regret asking it, but at the same time, we wouldnt have a laugh.
My reason was mainly bcs of the genitals being badly drawn. No hate on the artist, he/she did a good job on the overall art, or else i wouldbt be interested in the game.
The game is already packaged with and supports mosaics since it is also being developed for Japan and their stupid censorship laws.

If for whatever reason you want to do this, just make the Karryn.isCensored function return true instead.
 

jesebar

Newbie
Jan 14, 2018
16
20
It's already updated. I don't see a reason to post for minor version updates when you can just look at the commit history.
I love the glove and hat removal mechanic, but it seems like this ignores alterations to clothing stage repairs, i.e. if glove removal rolls true Karryn will always be down to her only-panties clothing stage. I like having the minimal clothing needed to use the repair clothing ability at the start of the fight, but I can't do that whenever glove removal occurs because of this behavior. I'm not sure if this is intended based on how glove removal is currently implemented (or if glove/hat removal is even technically possible without also removing clothing), but it would be cool to see glove/hat removal respond to the value of postBattleCleanup_numClothingStagesRestored. Just being able to see Karryn fully nude in regular combat I think is one of the nicest features of your mod. Hope they add this to vanilla some day.
 

jesebar

Newbie
Jan 14, 2018
16
20
Could you provide a quick rundown on how to install the mod properly? Apparently I'm doing it incorrectly, but can't seem to figure out the issue.

The install steps I followed don't seem to work, so trying to find where I went wrong.
Extract the zip file.
Run the .jar file in the ccmod_resources folder, make sure you have java installed.
Go to File > Set project and set the directory location to the main game folder, i.e. the folder containing nw.exe.
Go to Decrypt > All
This should make an output folder in the folder the .jar file is located (if the output folder isn't here, set the output directory under File>Output)
Move the contents of output (not output itself) to main game folder, the folder names should match.
Then copy the www folder in the ccmod_resources folder to the main game directory, you should have file overwrites, click replace all.
Edit the CC_Config.js file in main game directory under www\js\plugins with Notepad++ or another editor and enable the features you want from the mod.
 

ronadan

Member
Jul 2, 2017
178
385
Oh, never even touched mind upgrades, thanks for the tip)Going for a slut run should I focus on "release desires" branch?
for slut runs you don't care about crit, so "release" options just increase the amount of lust you get for that category. you need "healing thoughts" to heal your mind bar using stamina. slut runs are generally easier because after stacking some passives you just 2 shot most enemies with lust dmg when they cum
 
Last edited:
  • Like
Reactions: ComradeBear

ronadan

Member
Jul 2, 2017
178
385
But how do I get exposed to those skills? The only way I've done it is either lose, or just turtle combat and eventually it switched to a handjob sequence. Is there a faster way to get those?
the game has "first-time" passives, like the first kiss, the first blowjob, losing anal virginity, and so on. you don't need to lose (they all can happen if your enemy is horny enough) but losing on purpose helps u get them much faster. after getting your firsts, lewd scenes happen way more easily. u can also get some upgrades for certain types of enemies to use more lewd attacks
 
4.60 star(s) 484 Votes