Asus10x

Newbie
Nov 2, 2018
97
51
Nice game, i understand how to win as domH-buid, but have a problems as subH because enemies sexual attacks use %-damage, barmaid title helps only for sub
 
Last edited:

Aurelio1

Newbie
Dec 30, 2018
79
59
lmao damn i feel stupid thanks was over thinking it
Yeah I should've explained how to install the 'release' branch of the mod and not the 'dev' branch.
I figured since the dev branch was the most recent release it would work best with the current version (V09b.j)
My bad
 

ADAS20

Newbie
May 12, 2020
51
53
November 15th 2021: Progress Report and Voice Actresses Announcement


Hello everyone, Rem here with this week's Progress Report!

First up, I have an announcement/progress report! Actually, we have been working with the voice actresses (That's right, PLURAL) in the past two months and most of the lines by the VAs have now been recorded and the main work that we've been doing in the last week was starting the process of converting those recorded voices into game files! And as such, we are proud to announce today who Karryn's VAs are!

Karryn's Japanese VA will be the talented Tezuka Ryouko (手塚りょうこ) !!!

Twitter:

If you've a fan of Japanese voiced eroges, then you will most definitely have already sampled a piece of her works! In fact, Miss Tezuka was the VA for Meltys in the Meltys Quest anime!

Aaaand now drum roll please! Karryn's Prison will have DUAL AUDIO! Karryn will also be voiced in English, and you will have the option ingame to choose which ever voice you want to hear!

Karryn's English VA will be the talented SilkyMilk!!!

Twitter:

If you're a fan of English voiced eroges or western 3D animation videos, then you will most definitely have already heard her before!

These are some real good voiceworks, but why take my word for it? At the bottom of this post are the WORLD'S FIRST EXCLUSIVE samples of Karryn's lines spoken in English!!!

If you want to check out samples of Karryn's lines spoken in Japanese, check out today's Ci-en post below by Sachinama!



This is all thanks to everyone's support over the years! So as always, thank you everyone! Speaking of which, I got a random, out-of-the-blue PSA for everyone here. Sooo last weekend, I was thinking about how freaking dusty my rooms are, and I decided to google a bit about how to reduce the dust levels in the house.

What I have been doing all along was changing my bed sheets and pillow cases every week, and laundering my blanket every few months, and I thought this was considered good enough for a clean bed. However, it turns out that you are supposed to also VACUUM your bed mattresses every few months! (Or at least take it outside to beat the dust and crap out of it) I mean, in hindsight, I guess this is supposed to be super obvious but literally no one in my family knew about this so this knowledge was not passed down to me.

So yeah, everyone, if you didn't know, now you do. I want all our fans and supporters to live a long, healthy life, so please make sure the place that you spend 33% of your life on is hygienic! It's been chilly and windy in New York City this past week, so I hope everyone have been dressing warm! With that all said, take care and stay safe and enjoy the voice samples below! (Remember to wear headphones and turn down the volume!)
 

Disarace

Newbie
Nov 3, 2017
25
29
Is there a way to quickly modify stats like strength, agility, dexterity etc? I lost my saves and really dont want to farm all over again.
 

Loligami

Member
Jun 6, 2020
168
259
God the Japanese voice is so good. I was a bit disappointed that Miki Honda wasn't going to voice her, but knowing that it's Tezuka Ryouko makes up for it.
 
  • Heart
Reactions: Terenia

curiousben

Newbie
Sep 21, 2016
30
17
Is there a way to quickly modify stats like strength, agility, dexterity etc? I lost my saves and really dont want to farm all over again.
I go to RemtiaryKarrynTitles and right under Effects there's a block

Code:
Game_Actor.prototype.titlesParamBonus = function(paramId) {
    let bonus = 0;
    
    if(paramId === PARAM_CHARM_ID) {
        if(this.hasThisTitle(TITLE_ID_SLEEPY_BEAUTY)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_FIRST_KISS_TO_ANUS)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_GLORIOUS_HOLES)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_PRO_STRIPPER)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_STRIP_CLUB_REP)) bonus += 1;
    }
    else if(paramId === PARAM_MAXENERGY_ID) {
        if(this.hasThisTitle(TITLE_ID_FIX_CLOTHES_TWO)) bonus += 2;
        else if(this.hasThisTitle(TITLE_ID_FIX_CLOTHES_ONE)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_FULL_ORDER_FOUR)) bonus += 1;
        
    }
    else if(paramId === PARAM_MAXSTAMINA_ID) {
        if(this.hasThisTitle(TITLE_ID_GOURMET_FOODIE)) bonus += 30;
        
    }
    else if(paramId === PARAM_STRENGTH_ID) {
        if(this.hasThisTitle(TITLE_ID_BAR_ENFORCER)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_STRENGTH_TWO)) bonus += 2;
        else if(this.hasThisTitle(TITLE_ID_STRENGTH_ONE)) bonus += 1;
    }
    else if(paramId === PARAM_DEXTERITY_ID) {
        if(this.hasThisTitle(TITLE_ID_DEXTERITY_TWO)) bonus += 2;
        else if(this.hasThisTitle(TITLE_ID_DEXTERITY_ONE)) bonus += 1;
    }
    else if(paramId === PARAM_AGILITY_ID) {
        if(this.hasThisTitle(TITLE_ID_AGILITY_TWO)) bonus += 2;
        else if(this.hasThisTitle(TITLE_ID_AGILITY_ONE)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_LOST_VIRGINITY_TO_TOY)) bonus += 1;
    }
    else if(paramId === PARAM_ENDURANCE_ID) {
        if(this.hasThisTitle(TITLE_ID_ENDURANCE_TWO)) bonus += 2;
        else if(this.hasThisTitle(TITLE_ID_ENDURANCE_ONE)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_GOLDEN_WAITRESS)) bonus += 1;
    }
    else if(paramId === PARAM_MIND_ID) {
        if(this.hasThisTitle(TITLE_ID_UNORTHODOX_SINNER)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_MIND_TWO)) bonus += 2;
        else if(this.hasThisTitle(TITLE_ID_MIND_ONE)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_RECEPTIONIST_THIRTY_SHIFTS)) bonus += 1;
        if(this.hasThisTitle(TITLE_ID_WORLD_CLASS_RECEPTIONIST)) bonus += 1;
        
    }
    
    return bonus;
And I just pick a title I have and add all the stats I want to it.
 
May 18, 2020
113
227
Holy shit! I love both, picking won't be easy :D Sachi's post hints that the release will include the voice acting already, if I read his post right.
" Maybe the voice will be installed in time for the release! ?? So, I'm working on voice as much as Remu. "
I definitely hope so. I liked the voices so much that my first thought was that I should wait with the full playthrough till the VA is included.
 
  • Like
Reactions: someguy4567
Apr 23, 2018
57
141
What a pog moment, voice acting in yoir current favourite h game
Though I wonder how many voicelines they'd have to add and how frequently they'll be said
The main cutscenes will probably have voices
And the samples indicate that the skills are voiced

I wonder if for the sex scenes they will just have generic moanings or try and voice act every single line that Karryn says
Because those are a loooot of lines
 

Hipz

Member
May 25, 2019
122
223
I'm kinda sad that Miki Honda is not going to voice Karin any more. I think she's too busy at the moment.

But those two VA are good though.
 

Dragon Sins

Member
Jul 27, 2017
493
269
I'm usually not a fan of voice acting at all in these games... but the English VA is actually really good, I might even use it. Can't stand Japanese VAs though.
Japanese VAs are the main thing tho in Eroges, you hear them in a lot of Eroge these days, honestly I usually don't like English VAs as much because, I don't know, they just don't have the same feel, that's why official translators don't even bother trying to hire English VAs for the translation, because people usually never like it, myself included most of the time, but I actually don't mind English VA for Karryn, I was only expecting Japanese, but it seems that the game is gonna be even better than I thought.....
 
4.60 star(s) 450 Votes