- Jan 25, 2019
- 94
- 213
Im pretty sure its supposed to be close to impossible. Its a difficulty you pick on new game plus with tons of passives carrying over. Game is balanced around the normal difficulty.Exactly, hard but not impossible
Im pretty sure its supposed to be close to impossible. Its a difficulty you pick on new game plus with tons of passives carrying over. Game is balanced around the normal difficulty.Exactly, hard but not impossible
Yea i do mention that as well!Do bear in mind that a lot of their time before this release was spent on Island Saga. Now that that's out of the way, it stands to reason that the next update will be more substantial/arrive sooner than this one did.
as it should be.As an experiment, I tried kicking out every patron at the bar who tried to pull my clothes off.
It was a very lonely shift.
I wasn't able to find where these things are stored in a file, but, luckily enough, I was close to the end of my 3rd Slash Title Run, so messing around with those edicts wasn't hard. I put them under a spoiler so it doesn't take as much room.Help Iexist, Can you tell me the list of store items + foods and their effects (also how high the bed buff can be right now? previously it was 6%)
I'm literally stuck on LV3 right now with my stats all over the place, I need to figure which stat to give up on now...
I get that, but the normal save editor doesn’t seem to be able to change the charm stat, so I was wondering if there’s something else to change it.All your progress are saved in your save file, it is not related to the json files at all...
I have never seen a nerd (or rogue) in the bar. Is that new?Nerds can come to the bar too, albeit very rarely. Bet they're well-behaved.
Nope, saw it in 5q.I have never seen a nerd (or rogue) in the bar. Is that new?
Charm stat = Luck, you can just increase your luck with cheat menu and the charm will go upI get that, but the normal save editor doesn’t seem to be able to change the charm stat, so I was wondering if there’s something else to change it.
Yes, very specific instructions, which points to him not being intelligent enough for the job. He also demonstrates a tendency to be easily influenced by his old friends. As a partner, I don't trust him not to undermine me, even unintentionally. As a minion, his own interests are too closely tied to the rest of the inmates for this to work--do remember: he was in charge of Level 1.If you actually lose the boss fight, he hands you off to his subordinates for a perfectly normal loss scene in the bar closet. He doesn't even participate.
During the combat I've seen Tonkin initiate a titjob, but rarely. I'm not sure what other H-attacks he has; even that required a high charm build and lots of flaunting/kisses to get him in the mood.
Personally I want to appoint him as my assistant warden. The old guy is a useless slimeball who is almost certainly working for the treasonous scum on level 5, and Tonkin has proven himself to be competent and useful as long as he's given very specific instructions, making him the idealminionvalued partner. I dunno what his crime was, but I'm sure we can work out a pardon if he helps to put down a rebellion against the Crown.
Thanks, although my problem is that I want to lower it. I’ll try to add a negative value and see what happens.Charm stat = Luck, you can just increase your luck with cheat menu and the charm will go up
I believe that on one of the changelogs mention that it might be still added to v.6 just as a later update rather than v.7. Its gloryhole that might have a chance of coming before v.7 tho would love to see the stripper club come too. Since we are getting close to the end of the game and Rem has mention before that lvl4 and lvl5 are mainly story and no side jobs so they might do all the side stuff now or v.7I have found some interesting things in the RemtairyPrison.js .
You don't have permission to view the spoiler content. Log in or register now.
Looking forward to see it.
I'll admit I'm far from an expert on this, but I've raised it an obscene amount (1000+) and it doesn't really help. That value is only used when initializing a new enemy (i.e. when starting a new game, I believe).I am almost certain it works (at least I think so) after putting in a huge value like say from 8 to 200, more inmates ejaculate 40 or 90 ml more frequently. So hopefully I can get the desired amount I am looking for being more than 150 ml.
Game_Enemy.prototype.setupEjaculation = function() {
this._ejaculationCount = 0;
let ejStock = Math.floor(this.enemy().dataEjaculationStock);
if(this.enemy().dataEjaculationStock > 1 && this.enemy().dataEjaculationStock < 2) {
if(Math.random() < this.enemy().dataEjaculationStock - 1)
ejStock++;
}
else if(this.enemy().dataEjaculationStock > 2 && this.enemy().dataEjaculationStock < 3) {
if(Math.random() < this.enemy().dataEjaculationStock - 2)
ejStock++;
}
this._ejaculationStock = ejStock;
let min = this.enemy().dataEjaculationAmt;
let range = this.enemy().dataEjaculationRange;
this._ejaculationVolume = Math.max(Math.randomInt(range) + min, 0);
};
Game_Enemy.prototype.updateEjaculation = function() {
let range = this.enemy().dataEjaculationRange;
this._ejaculationVolume += range;
let ejStock = Math.floor(this._ejaculationVolume / 100);
this._ejaculationStock = Math.max(ejStock,1);
};
The glory hole coding have been there, which is called RemtairyKarrynGlory.js .I believe that on one of the changelogs mention that it might be still added to v.6 just as a later update rather than v.7. Its gloryhole that might have a chance of coming before v.7 tho would love to see the stripper club come too. Since we are getting close to the end of the game and Rem has mention before that lvl4 and lvl5 are mainly story and no side jobs so they might do all the side stuff now or v.7