View Single Post
  #7  
Old 09-30-2011, 12:19 PM
wc4482 wc4482 is offline
Aviak


Join Date: Jun 2010
Posts: 50
Default

Quote:
Originally Posted by falkun [You must be logged in to view images. Log in or Register.]
That may be your issue. I believe EQ utilizes floor(x) instead of round(x), or whatever the EQ equivalent is of those 2 matlab functions.
Examples to help make things clear:

floor(32) = round(32) = 32
floor(32.3) = round(32.3) = 32
floor(32.5) = 32, round(23.5) = 33
floor(32.8) = 32, round(32.8) = 33

Basically, until the new integer number is actually obtained through mods/levels, the next lowest is used. You can never "gain" values (damage, healing, +resist) through rounding, but you can "lose" some through the floor conversion (always <1 value lost).

Graphically, it would look like this, with the solid circles indicating inclusive on the lower step bound on the integer mark while the hollow circles indicate exclusive at the upper bound:

Do note that a rounding graph would look similar, but would be translated 0.5 units, so that x=5.5 would yield y=6, etc.
I was just thinking that a -0.5 at the end of the formula should fix the problem.

Quote:
Originally Posted by falkun [You must be logged in to view images. Log in or Register.]
Quote:
Originally Posted by Teeroyoyort [You must be logged in to view images. Log in or Register.]
That's awesome! Is mana regen really effected with an instrument? I thought it was just the HP value
To my understanding, only levels affect the amount of mana regen offered by the various mana songs (L32 & L55).
Well L32 is singing only, I wasn't sure about the L55 song so i guessed, but after some research I tend to agree with you that instrument mods don't effect mana regen -- I have removed this from the spreadsheet.
__________________
~~~~~
Pinkfloyd
50 Bard
~~~~~
Last edited by wc4482; 09-30-2011 at 12:49 PM..