Kendall99

New Member
Mar 20, 2019
14
25
Anyone feel like educating an idiot who's fiddling with this despite not having a clue about Javascript?

I'm trying to change the criteria for activating the waitressing minigame sex scene so that Karryn has to be aroused rather than just drunk.

I had a look at the code in RemtairyKarrynWaitress.js

There's this bit of code at the start of the harassWaitress action:

You don't have permission to view the spoiler content. Log in or register now.

I assumed that ran canStartWaitressSex every time one of the customers tried to harass Karryn. If that didn't allow the scene to start then it would skip that bit of code and go on to perform another kind of harassment - petting, offering drinks, asking her to flash.

I had a look at the canStartWaitressSex function to see what that did:

You don't have permission to view the spoiler content. Log in or register now.

I assumed the if statement checks whether Karryn isn't simultaneously Tipsy, Drunk, and DeadDrunk. If she isn't then it just returns to waitressBattle_action_harassWaitress to continue with the rest of that code. If she's all 3 kinds of drunk then it gets past that if statement and returns the next line (this.canGetRightHandInserted() etc.) allowing the sex scene to start.

I tried adding some extra criteria to that if statement to see what would happen. I tried getting it to only activate when Karryn goes over a certain pleasure number, or only straight after an orgasm, but neither worked. I tried copying the formatting and taking some of the status effects mentioned elsewhere in the waitress code, but that didn't seem to do much either.

Here's an example of something I've tried:

You don't have permission to view the spoiler content. Log in or register now.

I thought that would stop the scene from starting if Karryn wasn't simultaneously aroused, horny, and wet (as well as drunk). I assumed that getting those statuses would require a high pleasure stat, or maybe maxed out desire?

In practice if I accept drinks she'll still be bent over a table by the time the pleasure meter is barely out of single digits:

Karryn.JPG

I'm sure I'm missing something really obvious and making dumb mistakes, but it's got me a bit stumped...
 

Verosek

New Member
Jun 29, 2020
4
6
Anyone know how to edit the code so I can just have every sexual skill unlocked without needing to get the passives for them?
 

spacedog

Newbie
Jun 17, 2017
25
34
Anyone feel like educating an idiot who's fiddling with this despite not having a clue about Javascript?

I'm trying to change the criteria for activating the waitressing minigame sex scene so that Karryn has to be aroused rather than just drunk.

I had a look at the code in RemtairyKarrynWaitress.js

There's this bit of code at the start of the harassWaitress action:

You don't have permission to view the spoiler content. Log in or register now.

I assumed that ran canStartWaitressSex every time one of the customers tried to harass Karryn. If that didn't allow the scene to start then it would skip that bit of code and go on to perform another kind of harassment - petting, offering drinks, asking her to flash.

I had a look at the canStartWaitressSex function to see what that did:

You don't have permission to view the spoiler content. Log in or register now.

I assumed the if statement checks whether Karryn isn't simultaneously Tipsy, Drunk, and DeadDrunk. If she isn't then it just returns to waitressBattle_action_harassWaitress to continue with the rest of that code. If she's all 3 kinds of drunk then it gets past that if statement and returns the next line (this.canGetRightHandInserted() etc.) allowing the sex scene to start.

I tried adding some extra criteria to that if statement to see what would happen. I tried getting it to only activate when Karryn goes over a certain pleasure number, or only straight after an orgasm, but neither worked. I tried copying the formatting and taking some of the status effects mentioned elsewhere in the waitress code, but that didn't seem to do much either.

Here's an example of something I've tried:

You don't have permission to view the spoiler content. Log in or register now.

I thought that would stop the scene from starting if Karryn wasn't simultaneously aroused, horny, and wet (as well as drunk). I assumed that getting those statuses would require a high pleasure stat, or maybe maxed out desire?

In practice if I accept drinks she'll still be bent over a table by the time the pleasure meter is barely out of single digits:

View attachment 870851

I'm sure I'm missing something really obvious and making dumb mistakes, but it's got me a bit stumped...
I think the last line being
You don't have permission to view the spoiler content. Log in or register now.

for that method should do the trick
 
  • Like
Reactions: nepalem

TheSinful

Member
Jun 11, 2018
463
631
Is there a vaginal sex skill in game currently? I've got Cock Stare, Handjob, Cockpet, Titjob, Blowjob, and Anal Sex skills unlocked, but not a vaginal sex skill yet.
 

Hyperkid00

Newbie
May 20, 2018
54
18
There is one, but I got the skill through Passivefile changing. Ingame you can have the skill but it does nothing for me at least maybe with future updates this skill will do what we expect it will do.
 

souldead341

Engaged Member
Oct 16, 2017
2,304
2,392
Is there a vaginal sex skill in game currently? I've got Cock Stare, Handjob, Cockpet, Titjob, Blowjob, and Anal Sex skills unlocked, but not a vaginal sex skill yet.
No, it's not in the game yet. You are missing Kiss, Footjob, and rimjob from your sex skills list though.

There is one, but I got the skill through Passivefile changing. Ingame you can have the skill but it does nothing for me at least maybe with future updates this skill will do what we expect it will do.
The vaginal sex skill in not available outside of cheating because it isn't complete, and will either do nothing or freeze your game if you use it.
 

tetrayok

New Member
Apr 1, 2020
11
1
Anyone feel like educating an idiot who's fiddling with this despite not having a clue about Javascript?

I'm trying to change the criteria for activating the waitressing minigame sex scene so that Karryn has to be aroused rather than just drunk.

I had a look at the code in RemtairyKarrynWaitress.js

There's this bit of code at the start of the harassWaitress action:

You don't have permission to view the spoiler content. Log in or register now.

I assumed that ran canStartWaitressSex every time one of the customers tried to harass Karryn. If that didn't allow the scene to start then it would skip that bit of code and go on to perform another kind of harassment - petting, offering drinks, asking her to flash.

I had a look at the canStartWaitressSex function to see what that did:

You don't have permission to view the spoiler content. Log in or register now.

I assumed the if statement checks whether Karryn isn't simultaneously Tipsy, Drunk, and DeadDrunk. If she isn't then it just returns to waitressBattle_action_harassWaitress to continue with the rest of that code. If she's all 3 kinds of drunk then it gets past that if statement and returns the next line (this.canGetRightHandInserted() etc.) allowing the sex scene to start.

I tried adding some extra criteria to that if statement to see what would happen. I tried getting it to only activate when Karryn goes over a certain pleasure number, or only straight after an orgasm, but neither worked. I tried copying the formatting and taking some of the status effects mentioned elsewhere in the waitress code, but that didn't seem to do much either.

Here's an example of something I've tried:

You don't have permission to view the spoiler content. Log in or register now.

I thought that would stop the scene from starting if Karryn wasn't simultaneously aroused, horny, and wet (as well as drunk). I assumed that getting those statuses would require a high pleasure stat, or maybe maxed out desire?

In practice if I accept drinks she'll still be bent over a table by the time the pleasure meter is barely out of single digits:

I'm sure I'm missing something really obvious and making dumb mistakes, but it's got me a bit stumped...
Let's assume you accepting drinks fulfills isTipsy, isDrunk, isDeadDrunk.

Then you need to check the values of isAroused, isHorny, isWet to make sure it's what you expect the values to be.
 

Kendall99

New Member
Mar 20, 2019
14
25
Let's assume you accepting drinks fulfills isTipsy, isDrunk, isDeadDrunk.

Then you need to check the values of isAroused, isHorny, isWet to make sure it's what you expect the values to be.
OK, thanks. Any hint how I'd display those values while running the game to get a better idea of what it's doing?
 

mamaboiii

Active Member
Oct 13, 2018
568
1,677
Anyone feel like educating an idiot who's fiddling with this despite not having a clue about Javascript?

I'm trying to change the criteria for activating the waitressing minigame sex scene so that Karryn has to be aroused rather than just drunk.

I had a look at the code in RemtairyKarrynWaitress.js

There's this bit of code at the start of the harassWaitress action:

You don't have permission to view the spoiler content. Log in or register now.

I assumed that ran canStartWaitressSex every time one of the customers tried to harass Karryn. If that didn't allow the scene to start then it would skip that bit of code and go on to perform another kind of harassment - petting, offering drinks, asking her to flash.

I had a look at the canStartWaitressSex function to see what that did:

You don't have permission to view the spoiler content. Log in or register now.

I assumed the if statement checks whether Karryn isn't simultaneously Tipsy, Drunk, and DeadDrunk. If she isn't then it just returns to waitressBattle_action_harassWaitress to continue with the rest of that code. If she's all 3 kinds of drunk then it gets past that if statement and returns the next line (this.canGetRightHandInserted() etc.) allowing the sex scene to start.

I tried adding some extra criteria to that if statement to see what would happen. I tried getting it to only activate when Karryn goes over a certain pleasure number, or only straight after an orgasm, but neither worked. I tried copying the formatting and taking some of the status effects mentioned elsewhere in the waitress code, but that didn't seem to do much either.

Here's an example of something I've tried:

You don't have permission to view the spoiler content. Log in or register now.

I thought that would stop the scene from starting if Karryn wasn't simultaneously aroused, horny, and wet (as well as drunk). I assumed that getting those statuses would require a high pleasure stat, or maybe maxed out desire?

In practice if I accept drinks she'll still be bent over a table by the time the pleasure meter is barely out of single digits:

View attachment 870851

I'm sure I'm missing something really obvious and making dumb mistakes, but it's got me a bit stumped...
You just made a small logical mistake. I don't know your prior knowledge so first some basics:
You don't have permission to view the spoiler content. Log in or register now.

Now to your part:
You don't have permission to view the spoiler content. Log in or register now.

If you (or anybody else) still have any questions, ask away ;)
 

TheSinful

Member
Jun 11, 2018
463
631
No, it's not in the game yet. You are missing Kiss, Footjob, and rimjob from your sex skills list though.


The vaginal sex skill in not available outside of cheating because it isn't complete, and will either do nothing or freeze your game if you use it.
Right, forgot to list Kiss. Disabled Rimjob cuz frankly, not my bag.
 

akhulu

Newbie
Apr 23, 2020
88
115
No you don't. That's bullshit.
I'm playing it on a regular ass HDD right now.
I don't know if it's bullshit but I'm sure the dev made that note file. Look for the REad Me ENG.txt file in the game folder, then the Troubleshooting section.

== Troubleshooting

>The game is taking forever to load! / The game boots up and is stuck on the logo screen forever!

Please play Karryn's Prison on a SSD.
I think I give up. I tried waiting for 20 min and no result.
 

TheSinful

Member
Jun 11, 2018
463
631
I don't know if it's bullshit but I'm sure the dev made that note file. Look for the REad Me ENG.txt file in the game folder, then the Troubleshooting section.



I think I give up. I tried waiting for 20 min and no result.
My PC's 3ish years old and just a simple off the shelf computer, but plays it fine. Takes a couple minutes to load but that's all. How old is yours?
 

akhulu

Newbie
Apr 23, 2020
88
115
My PC's 3ish years old and just a simple off the shelf computer, but plays it fine. Takes a couple minutes to load but that's all. How old is yours?
5 years old iirc, but I don't think it's the issues. I think maybe it's more about GPU as I use an Intel HD. But I never had issue with 3D games here so far, including unity and Renpy 3D model games. So it's strange if it's the cause for this 2D game.

Maybe it's about RAM too, mine is 4GB what is yours
 

TheSinful

Member
Jun 11, 2018
463
631
5 years old iirc, but I don't think it's the issues. I think maybe it's more about GPU as I use an Intel HD. But I never had issue with 3D games here so far, including unity and Renpy 3D model games. So it's strange if it's the cause for this 2D game.

Maybe it's about RAM too, mine is 4GB what is yours
12GB RAM.
So if that's it, my old PC wouldn't be able to run it probably. It was 6 or 7 years old when I replaced it and at the time, it'd take me like 15+ minutes to log in to WoW
 

taglag

Well-Known Member
Aug 6, 2019
1,351
1,119
5 years old iirc, but I don't think it's the issues. I think maybe it's more about GPU as I use an Intel HD. But I never had issue with 3D games here so far, including unity and Renpy 3D model games. So it's strange if it's the cause for this 2D game.

Maybe it's about RAM too, mine is 4GB what is yours
Yeah ram might be and issue, I'll assume the game fully load's except for saving the game, and maybe map changes, but if there small those may stay in the ram anyway. I would think that would be at least a possibility.

The other thing I am sure you have done is to check this page. This is and RPG maker game, and there are at least 4 different version, and depending on what version RPG maker the game is you absolutely need to have the Player version at least installed.
https://f95zone.to/threads/rpg-maker-help-section.921/

But some RPG maker game user's do install the needed stuff to allow them to run with out that, but they are few, or have been for the ones I have played.
 

mamaboiii

Active Member
Oct 13, 2018
568
1,677
The other thing I am sure you have done is to check this page. This is and RPG maker game, and there are at least 4 different version, and depending on what version RPG maker the game is you absolutely need to have the Player version at least installed.
But in RPG Maker MV, which this game seems to be in, you don't need to download any RTPs..
 
  • Like
Reactions: taglag

taglag

Well-Known Member
Aug 6, 2019
1,351
1,119
But in RPG Maker MV, which this game seems to be in, you don't need to download any RTPs..
I was not totally sure on this game i knew I needed the loader or player side at least on all the other RGP maker games. And I happen to have "Rpg maker MV" so I assumed you would need it in this game also.

I know some game maker's did include the needed files, but a lot more do not. I just know this game played fine for me on my other system which was over 9 years old with win 7 OS. (bought it when skyrim first came out.) This one I have now is pretty beefy 12 core CPU, Nvidia 2070 super, and everything plays well on it so far.

Anyway I was just trying to help.
 
  • Like
Reactions: Beats9821
Jul 27, 2017
126
174
This game runs fine on most systems.

On my 16GB, GTX 1070, i5-7600k
- I get a solid 55-60 FPS capped (only drops when assets are loading in.)

On my 4GB, i3-6600m, Intel Chipset
- I dip to around 30 - 40 in battles.

The game only uses about 2-3GBs of RAM, but the CPU skyrockets during battles, jobs, etc. even on my gaming rig.

CPU seems to be the biggest user here, which makes sense since RPGMaker MV is a Java based program. Plus, the game never uses more than 5% of my GPU even on max settings.

And yes, RPGMaker MV requires no RTP. The necessary assets are already in the game files.
 
4.60 star(s) 453 Votes