DustyX

Member
Jun 16, 2017
359
433
177
Hey peeps, I recall this being mentioned in some of the pages --but as there is almost 2,000 of them I wouldn't know whereabouts to search for answers.

What were some (even half-so) quality games akin to Karryns Prison, specifically with progressive h-attacks, restraints in combat and similar.

I used to have a rpg maker game on my old PC that had a big emphasis on bdsm restraints... something something woman with bokken, had a red hair companion and other friends... can't for the life of me remember what it was called.

But yeah, any suggestions?
 

rei_x

Member
Dec 26, 2023
250
337
169
mamaboiii yo bro, what function should I change to gain more cash each day?

By the way, I found an income duplicator function and adjusted it from 1 to 5, resulting in me gaining five times the money I should be making every day.
They made the game scripts really user-friendly, making it easy to navigate and modify as needed. Also, do you know if there will be a future update for the game? :unsure:
 
Last edited:

Purple_Heart

Engaged Member
Oct 15, 2021
3,000
5,335
637
Here's a question for people who are into modding. Which program/methods are you using to find a specified text among many readable files(such as .js files)? For example lets say I want to find the word "gold" among this game's many .js files. Which program/method should I use?

I know of a method, it is kind of stupid but it works. That's why I want to learn if there are better/more efficient methods.
 

JustAl

Active Member
Jan 28, 2022
683
824
158
Here's a question for people who are into modding. Which program/methods are you using to find a specified text among many readable files(such as .js files)? For example lets say I want to find the word "gold" among this game's many .js files. Which program/method should I use?

I know of a method, it is kind of stupid but it works. That's why I want to learn if there are better/more efficient methods.
I have an ultra-stupid method that doesn't need programming, and a method that's easy in an OS console context.

The stupid way: Notepad++ all the files then search "word" across all the files. Yes, but that's stupid.

A more efficient way: check out basic console syntax and scan a bunch of files for the string within. . Linux has convenient tools for this to a greater extent.
 
  • Like
Reactions: Purple_Heart

Purple_Heart

Engaged Member
Oct 15, 2021
3,000
5,335
637
I have an ultra-stupid method that doesn't need programming, and a method that's easy in an OS console context.

The stupid way: Notepad++ all the files then search "word" across all the files. Yes, but that's stupid.

A more efficient way: check out basic console syntax and scan a bunch of files for the string within. . Linux has convenient tools for this to a greater extent.
Unfortunately these methods didn't help as I realized I've been using a more efficient method than the ones you've described. Still, that powershell example was interesting to learn, so thanks.

The method I have been using I feel like is some extremely stupid shit but it works, it did help me with finding everything I wanted to find so far.

I've been using winrar's search feature on game's folders and notepad++ to edit files. Double clicking search results on winrar instantly opens the file in notepad++ and highlights the line I was searching for. The only issue with this method is I have to use notepad++ to know if the file contains more than one instances of the text I am searching for because winrar doesn't show that. That's where this method gets less efficient. If there are multiple files in search results that means I have to check each file for potential multiple search results. Maybe there are better, more efficient methods. IDK.
 
Last edited:
  • Like
Reactions: JustAl

rei_x

Member
Dec 26, 2023
250
337
169
Is no problem, you will face the enemies again and as you unblock new areas you get new enemies. If you want to see the "defeat" scenes you have other chances when that level riots.

best approach IMO is to play the easiest difficulty the first time and play to win, get used to the mechanics and get that virgin run achievement, keep that saved game reserved and then start a new game+ in a different slot and from there you can go for a full slut route to get all the porn and other slot to actually try to beat the game in medium and hard difficulties.

If you don't care for beating the high difficulties you just start the game again on easy but lose on purpose a few times to increase your slut level to unlock all the actions and then unlock
You don't have permission to view the spoiler content. Log in or register now.
Yes, I completed a game today and Karryn remained a virgin until the end, resulting in a "happy ending." I am curious about the ending where she marries a prince but then engages in intercourse with inmates (even there I didn't let them fuck her pussy). Is this the intended happy ending, or is there another type of conclusion? Additionally, now that I am in 'free game mode,' am I free to do whatever I want, or should I start a new game to pursue my desires? :4Head:
 
Last edited:

deepheat

New Member
Oct 21, 2020
11
20
102
Unfortunately these methods didn't help as I realized I've been using a more efficient method than the ones you've described. Still, that powershell example was interesting to learn, so thanks.

The method I have been using I feel like is some extremely stupid shit but it works, it did help me with finding everything I wanted to find so far.

I've been using winrar's search feature on game's folders and notepad++ to edit files. Double clicking search results on winrar instantly opens the file in notepad++ and highlights the line I was searching for. The only issue with this method is I have to use notepad++ to know if the file contains more than one instances of the text I am searching for because winrar doesn't show that. That's where this method gets less efficient. If there are multiple files in search results that means I have to check each file for potential multiple search results. Maybe there are better, more efficient methods. IDK.
You only need Notepad++ > Find in Files (Ctrl+Shift+F) Set the directory to search, Filters to *.* and the option 'In all sub-folders' checked. Search results will show you every line where your text is found and double-clicking will open the file to that line. I would set the directory to www\js folder just so it doesn't waste time looking through pointless files.
 
  • Like
Reactions: Purple_Heart

swiezy

Newbie
Apr 3, 2018
75
1,167
317

Shinobikun

Member
Oct 5, 2017
147
336
251
Here's a question for people who are into modding. Which program/methods are you using to find a specified text among many readable files(such as .js files)? For example lets say I want to find the word "gold" among this game's many .js files. Which program/method should I use?

I know of a method, it is kind of stupid but it works. That's why I want to learn if there are better/more efficient methods.
I just use good old grep. Not sure if its the most efficient way, but on a windows machine I have git bash installed which comes with unix utilities. So I just navigate to the plugins folder and open a shell there then e.g.

Bash:
grep "gold" *
It also displays the line where it found the keyword. Afterwards I open the file which seems correct.
Grep is super powerful, so it has lots of options. Nowadays I just ask ChatGPT if need to specify some option that i don't already know about. It works really well with that sort of thing.
 

Deleted member 909093

Engaged Member
Sep 25, 2018
2,436
5,442
702

Purple_Heart

Engaged Member
Oct 15, 2021
3,000
5,335
637
You only need Notepad++ > Find in Files (Ctrl+Shift+F) Set the directory to search, Filters to *.* and the option 'In all sub-folders' checked. Search results will show you every line where your text is found and double-clicking will open the file to that line. I would set the directory to www\js folder just so it doesn't waste time looking through pointless files.
Thanks for pointing this out. I didn't know notepad++ has a feature like this.

I just use good old grep. Not sure if its the most efficient way, but on a windows machine I have git bash installed which comes with unix utilities. So I just navigate to the plugins folder and open a shell there then e.g.

Bash:
grep "gold" *
It also displays the line where it found the keyword. Afterwards I open the file which seems correct.
Grep is super powerful, so it has lots of options. Nowadays I just ask ChatGPT if need to specify some option that i don't already know about. It works really well with that sort of thing.
I don't know what "grep" is but I'll look into it, thanks.
 
  • Like
Reactions: Aereon1104

rei_x

Member
Dec 26, 2023
250
337
169
Thanks for pointing this out. I didn't know notepad++ has a feature like this.


I don't know what "grep" is but I'll look into it, thanks.
You can achieve the same using vscode as well.
Simply open the folder within it and utilize the search function; it will meticulously scan through every file, pinpointing lines containing your desired search query.
 
  • Like
Reactions: Purple_Heart
4.60 star(s) 496 Votes