QUOTE(BR? @ Jul 12 2011, 04:03)

Memory usage increases tons in Firefox while playing Hentaiverse. Didn't let up at all. Last time I played I watched it from around 200,000 K to 600,000 K just by playing the game. Even with FF's memory issues that sounds more like memory leaking or something.
Firefox has always been a memory sink. Use Chrome. Even Opera works better for HV.
QUOTE(skillchip @ Jul 12 2011, 07:40)

I also think it would be good if you shared some formulas with us so we can check for any errors in the future.
Fair enough...
The damage formulas are fairly straight-forward, except for the part that involves rating. I'm not even going to start trying to explain that, since it's going away.
CODE
$damage = max(1, ($damage_roll * $spell_data['d'] * $magic_dmg * $critmod * $aoemod * $channelmod - $defense_abs) * $defense_mit);
$damage_roll is from the rating formula.
$spell_data['d'] is the damage factor from the spell.
$critmod is 1.5 for a critical hit, 1 otherwise.
$aoemod is 2 for the primary target of an AOE, 1 otherwise.
$channelmod is 1.5 if channeling is active, 1 otherwise.
$defense_abs and $defense_mit are calculated absorption and mitigation for the element and attack type in question.
$magic_dmg is calculated separately as:
CODE
$magic_dmg = (1 + $base_bonus) * (1 + $elem_bonus) * (1 + $prof_bonus) * (1 + $boost_bonus) * (1 + $hath_bonus) * $this->get_stamina_damage_factor();
where...
$base_bonus is magic attack damage / 100
$elem_bonus is element spell damage bonus / 100
$prof_bonus is magic proficiency / 200
$boost_bonus is 0.0625 for every ability point put into the spell past the first
$hath_bonus is from the Paradise Lost hath perks
QUOTE(varst @ Jul 12 2011, 09:37)

It's pretty easy for a lv.50 guy to level up his equipments in IW: he only needs about 300 rounds of playing time.
The situation's entirely different for a lv. 200 guy: if I want to level up my equipments, I will need a total of 1200 rounds.
Yet the level 300 guy can go through 1200 rounds in the same time as the level 50 guy, or even less.