![]() |
#2
|
|||
|
![]() Most of the oddity probably comes down to rounding.
Your values look about right coming out of the formula EQEmu has for pre-SoF clients: Code:
if((( Wis - 199 ) / 2) > 0) MindLesserFactor = ( Wis - 199 ) / 2; else MindLesserFactor = 0; MindFactor = Wis - MindLesserFactor; if(Wis > 100) max_m = (((5 * (MindFactor + 20)) / 2) * 3 * GetLevel() / 40); else max_m = (((5 * (MindFactor + 200)) / 2) * 3 * GetLevel() / 100); Comes down to about 10 (flip flops between 9 and 11?) mana per wis pre-200 at 60. After 200, it's not that you get half mana per wis so much as that every second point of wis (the odds) doesn't count. Which would explain how +3 wis can look like very little. All that's assuming the devs haven't mucked with the clientside calculations, though. | ||
Last edited by Zaela; 08-17-2014 at 06:52 PM..
Reason: forgot to truncate when calculating the per-wis value ;p
|
|
|
|