aftershock

New Member
Jun 13, 2017
14
4
Code:
        let dmgValue = (this.str * userStrMulti + this.dex * userDexMulti + this.agi * userAgiMulti) * this.moddedWeaponAttack();
        dmgValue *= Math.max(0, (dmgValue / ((target.str * targetStrMulti) * target.moddedWeaponDefense())) - 0.5);
Is this a bug (on the second line, in Game_Battler.prototype.dmgFormula_attackDmg)? I'm sure it's a bug. It says damage grows as a square of strength. I'm sure they meant "=" instead of "*=".
 

drchainchair2

Member
Mar 28, 2020
248
635
Code:
        let dmgValue = (this.str * userStrMulti + this.dex * userDexMulti + this.agi * userAgiMulti) * this.moddedWeaponAttack();
        dmgValue *= Math.max(0, (dmgValue / ((target.str * targetStrMulti) * target.moddedWeaponDefense())) - 0.5);
Is this a bug (on the second line, in Game_Battler.prototype.dmgFormula_attackDmg)? I'm sure it's a bug. It says damage grows as a square of strength. I'm sure they meant "=" instead of "*=".
You can report it in the bug report channel on discord.
 
Jul 28, 2018
493
302
Code:
        let dmgValue = (this.str * userStrMulti + this.dex * userDexMulti + this.agi * userAgiMulti) * this.moddedWeaponAttack();
        dmgValue *= Math.max(0, (dmgValue / ((target.str * targetStrMulti) * target.moddedWeaponDefense())) - 0.5);
Is this a bug (on the second line, in Game_Battler.prototype.dmgFormula_attackDmg)? I'm sure it's a bug. It says damage grows as a square of strength. I'm sure they meant "=" instead of "*=".
It's calculating a damage multiplier by dividing the attacker's damage by the target's defense, then subtracting 50% and making sure it doesn't go below 0 and heal the target. If the damage and defense aren't normally too far apart it should work fine, despite the attacker's stats (and their own weapon damage modifier) appearing twice.

It'd be interesting to output the results and see what the numbers typically are.
 

Vanik

Member
Sep 4, 2017
145
33
so is their a guide for the receptionist game?
can you do anything with the women?
how can i get more men to want to have sex at the desk?
 
Jul 28, 2018
493
302
so is their a guide for the receptionist game?
can you do anything with the women?
how can i get more men to want to have sex at the desk?
1. Maybe? Search the thread.
2. You can shake their hand.
3. Call people up to the desk so they will see that a goblin or man is messing with you (they get the ! icon).
 

a1th3r

New Member
Jun 11, 2020
2
43
I'm sorry if this has been answered, but I tried different search queries and nothing came up.

Is it possible to remove specific cut ins, for example the nipple pinching?
 

TheLeftFriend

Newbie
Nov 28, 2018
31
30
Guys i just get black screen when starting game, any help would be appreciated.
I found one fix for the Blackscreen Bug. Run the game in Compatibility mod for windows vista. be warnd the game do become slover and a bit janky in moment, but you can experience it non the less. another thing i dont know it if create any bugs later in the game.
 
  • Like
Reactions: Snake420

robdelobe

Newbie
Jul 6, 2017
50
71
ppl complaining about anal in the game and here i'm waiting for the black dudes(or brown orcs) with bigger cocks to ravage karryn's ass
You don't have permission to view the spoiler content. Log in or register now.
Dunno about brown orcs, but there have been blue ogres before. We still got two more levels to go(maybe even a small final boss dungeon after the last level). So maybe there're down there somewhere(Brown orcs or blue ogres). I'm hoping for the ogres. Given that Karryn is almost twice Meltys' size, Karryn might even be able to beat Melty's high score.

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

NotSatan

Newbie
Jan 4, 2018
15
22
So I can't for the life of me get the decrypter for the pregmod to work, I followed all the steps, but no matter where I put the decrypter it won't open the project. I hate to ask, but can someone upload a decrypted/modded version of the game
 

zoomies

Well-Known Member
Jun 4, 2017
1,053
863
don't know if it matters to anyone, but i found an error in the coding for karryn taking guys virginity with her pussy, it is set to always count it to anal, not pussy. it is in www/js/plugins/karryn passives line 1341, you need to change anal to pussy
 
  • Like
Reactions: Hydrofront

Hydrofront

New Member
May 14, 2019
9
8
don't know if it matters to anyone, but i found an error in the coding for karryn taking guys virginity with her pussy, it is set to always count it to anal, not pussy. it is in www/js/plugins/karryn passives line 1341, you need to change anal to pussy
Nice find! You should report this in the bug channel on their Discord (accessible from the game menu). I'm wondering if it's actually intentional since
You don't have permission to view the spoiler content. Log in or register now.
Would be weird, though.
 

drchainchair2

Member
Mar 28, 2020
248
635
Nice find! You should report this in the bug channel on their Discord (accessible from the game menu). I'm wondering if it's actually intentional since
You don't have permission to view the spoiler content. Log in or register now.
Would be weird, though.
I reported it on discord already after seeing the post.

There's a function literally right below it for doing it via anal. It's a copy/paste bug. No current effect on gameplay since the record in question is never used, though it may affect later versions if you keep the same save since that record would still be 0.
 

Marlin Brandy

Member
Aug 18, 2018
349
723
anyone know a solution for the %NaN bug that occurs every now and then with the pleasure meter? It seems to happen when I lose too many battles in succession

Edit: Also, I'm guessing there's no way to hook cheatengine to RPGMV? I've tried it multiple times, even in previous games. Looking for values or even the value*2+1 method for other RPGM games doesn't seem to work
 

Hydrofront

New Member
May 14, 2019
9
8
is there a possibility to set the riot chances to zero?
On line 2436 in RemtairyPrison.js, try adding a return statement. That should do it, though I have not tested myself. It should stop it from trying to start any riots (it also will not stop current ones, if you have some going):
Code:
Game_Party.prototype.nextDayRiotManager = function() {
    return;
 
  • Like
Reactions: Lolax Perex
4.60 star(s) 453 Votes