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);
You can report it in the bug report channel on discord.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 "*=".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);
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.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 "*=".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);
1. Maybe? Search the thread.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?
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.Guys i just get black screen when starting game, any help would be appreciated.
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.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.
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 sincedon'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
I reported it on discord already after seeing the post.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 sinceWould be weird, though.You don't have permission to view the spoiler content. Log in or register now.
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):is there a possibility to set the riot chances to zero?
Game_Party.prototype.nextDayRiotManager = function() {
return;