- Jun 30, 2019
- 34
- 6
ohhhhh i though it was a passive. My bad. Thank youPrison Fighter is a title you need to equip.
ohhhhh i though it was a passive. My bad. Thank youPrison Fighter is a title you need to equip.
would you say Descartes endorses your actions?On a slightly different topic - strange that those are locked based on how much of a slut Karryn is. Kind of strange, to be honest - they did the exact opposite of how the system worked in Meltys Quest. In there, the more of a slut with different sex sluts Meltys was, the more outfits you could unlock.
Here they're actively encouraging a pure run for some reason.
I've said it before, and I'll say it again.
The can't stop me.
DeathByPiercing mentioned earlier a way to. (It involves editing a js file)Hello guys Just a question Is there ANY WAY to turn OFF the Autosaves options? xD It just keeps on replacing on my recent saves
Finally found a way to turn off Auto Save!
In the YEP_X_Autosave.js file insert this row: "return;" before this row: "SceneManager._scene.performAutosave();".
It should look like this:
StorageManager.performAutosave = function() {
if ($gameMap.mapId() <= 0) return;
if ($gameTemp._autosaveNewGame) return;
if (!$gameSystem.canAutosave()) return;
return;
SceneManager._scene.performAutosave();
};
If you want Auto Save back again, just delete the added row.
Uhmm Can you please explain this in a simplier way? xD Also how would I open a JS file? Which from these 2 should I copy? This one?DeathByPiercing mentioned earlier a way to. (It involves editing a js file)
You can open and edit a js file with Notepad (right click>open with>notepad)Uhmm Can you please explain this in a simplier way? xD Also how would I open a JS file? Which from these 2 should I copy? This one?
I don't see where to add it lolYou can open and edit a js file with Notepad (right click>open with>notepad)
Under edit chose find and put " if (!$gameSystem.canAutosave()) return; " on the field and use search. Then add the "return" line as explained in that post.
What’s the script to change the amount of semen they shoot?I fiddled so much with the scripts that the game keep crashing anyways. I disable enemies needing to be horny, disabled handjobs completely since they are boring, made enemies able to cum thrice before dying because they usually cum before anyone can join, made karryn drunk after one ale, make the inmates shoot at least a litre of load into her and gave a choice to game over events. Changing the scripts in this game is hard, but oh so worthy.
One of these changes made the menu vanish during the barmaid scene after starting to drink out of the 10 litre mug. That wasn't really cool.
To answer my own question for others the answer is no I do not need to kick to initiate the kick counter. The nerds initiated the sex pose themselves.Question, if I replace the footjob animation which I assume the Nerds initiate with the Kick Counter, will the nerds initiate the kick counter position on their own or do I still have to actually get kick countered?
Okay so you found how to get into the js file, great.I don't see where to add it lol
On top of this I gained a passive that states it allows you to squirt more often during orgasms however when she orgasms all you ever see is the cut-in of her face. Wonder if that’ll be implemented later to where you see her body orgasm or something. Otherwise how tf would you know she squirted or not?I don't recall if it was in Meltys Quest, been awhile since I've played that, and it may have already been discussed but I couldn't locate it anywhere within the thread if it was but I'm hoping that there will be other things implemented that people can toggle (like the rimjobs and stuff) specifically squirting would be nice.
You get another cutin if you get 200 pleasure at once, which I only get by being horny with open pleasure, filled in three holes by the slime, and 99 pleasure before he did his three sexmove attackOn top of this I gained a passive that states it allows you to squirt more often during orgasms however when she orgasms all you ever see is the cut-in of her face. Wonder if that’ll be implemented later to where you see her body orgasm or something. Otherwise how tf would you know she squirted or not?
I think I may have achieved this once, is it the cut-in where her head is tilted back with the tongue sticking out?You get another cutin if you get 200 pleasure at once, which I only get by being horny with open pleasure, filled in three holes by the slime, and 99 pleasure before he did his three sexmove attack
Also you can enable manual saving. I have autosave active. It only autosaves after a fight, at the start of a fight and when entering a room. Thus you can easily save-scum by just alt+f4 and start the fight or action (e.g. waitress job) again. It's an easy tweak:Okay so you found how to get into the js file, great.
Once you’ve opened it in Notepad, either click Edit at the top, then Find
OR hit CTRL+F on your keyboard to open the “Find” function.
Allows you to search for a specific line within the entirety of the notepad.
So copy paste into the Find function “SceneManager._scene.performAutosave();”
Then click Next and it will immediately take you to the section of the notepad with that writing.
This is the section you’re looking to manually change yourself.
The original looks like this:
StorageManager.performAutosave = function() {
if ($gameMap.mapId() <= 0) return;
if ($gameTemp._autosaveNewGame) return;
if (!$gameSystem.canAutosave()) return;
SceneManager._scene.performAutosave();
};
What you need to do is put an extra row inbetween the last two writings and add return;
So it will now look like this:
StorageManager.performAutosave = function() {
if ($gameMap.mapId() <= 0) return;
if ($gameTemp._autosaveNewGame) return;
if (!$gameSystem.canAutosave()) return;
return;
SceneManager._scene.performAutosave();
};
Then save your changes.
If it doesn’t allow you to save over just save it somewhere else on your computer, then copy paste it into the folder to overwrite.
I am interested in a few of these scripts, what would I have to edit to get the drunk and the litre cum? Also, do you know how tot possibly edit the scripts in such a way that she's ALWAYS horny/wet/whatever and ALWAYS missing her panties?I fiddled so much with the scripts that the game keep crashing anyways. I disable enemies needing to be horny, disabled handjobs completely since they are boring, made enemies able to cum thrice before dying because they usually cum before anyone can join, made karryn drunk after one ale, make the inmates shoot at least a litre of load into her and gave a choice to game over events. Changing the scripts in this game is hard, but oh so worthy.
One of these changes made the menu vanish during the barmaid scene after starting to drink out of the 10 litre mug. That wasn't really cool.
Thanks for the tip I just added this one xD and it worksOkay so you found how to get into the js file, great.
Once you’ve opened it in Notepad, either click Edit at the top, then Find
OR hit CTRL+F on your keyboard to open the “Find” function.
Allows you to search for a specific line within the entirety of the notepad.
So copy paste into the Find function “SceneManager._scene.performAutosave();”
Then click Next and it will immediately take you to the section of the notepad with that writing.
This is the section you’re looking to manually change yourself.
The original looks like this:
StorageManager.performAutosave = function() {
if ($gameMap.mapId() <= 0) return;
if ($gameTemp._autosaveNewGame) return;
if (!$gameSystem.canAutosave()) return;
SceneManager._scene.performAutosave();
};
What you need to do is put an extra row inbetween the last two writings and add return;
So it will now look like this:
StorageManager.performAutosave = function() {
if ($gameMap.mapId() <= 0) return;
if ($gameTemp._autosaveNewGame) return;
if (!$gameSystem.canAutosave()) return;
return;
SceneManager._scene.performAutosave();
};
Then save your changes.
If it doesn’t allow you to save over just save it somewhere else on your computer, then copy paste it into the folder to overwrite.
How do you make them come more than once? That would be really useful for getting some other skills, like titjobs that require other inmates to join in generally. That said, needing everyone to spooge multiple times would make the losing blowbang more exhausting.I fiddled so much with the scripts that the game keep crashing anyways. I disable enemies needing to be horny, disabled handjobs completely since they are boring, made enemies able to cum thrice before dying because they usually cum before anyone can join, made karryn drunk after one ale, make the inmates shoot at least a litre of load into her and gave a choice to game over events. Changing the scripts in this game is hard, but oh so worthy.
One of these changes made the menu vanish during the barmaid scene after starting to drink out of the 10 litre mug. That wasn't really cool.
YesI think I may have achieved this once, is it the cut-in where her head is tilted back with the tongue sticking out?
The change made the game constantly crash after every third battle. Just like the workaround to skip the blowbang scene which made the screen blank until you battled again. Which was complicated since you ran through the prison blindly.How do you make them come more than once? That would be really useful for getting some other skills, like titjobs that require other inmates to join in generally. That said, needing everyone to spooge multiple times would make the losing blowbang more exhausting.
this._ejaculationStock = this.enemy().dataEjaculationStock;How do you make them come more than once? That would be really useful for getting some other skills, like titjobs that require other inmates to join in generally. That said, needing everyone to spooge multiple times would make the losing blowbang more exhausting.