PDA

View Full Version : Intellect calculated wrong


cmccad
30-01-2008, 06:34 PM
For Paladins with the "Divine Intellect" talent (5/5) you're sometimes a point off. It seems you are using:

floor((base_int+equipment_int)*1.1)

when you should be using:

floor(base_int*1.1) + floor(equipment_int*1.1)

e.g.
floor((83+359)*1.1) = 486
floor(83*1.1) + floor(359*1.1) = 485

For int, it's not such a big deal to be a point off, but it messes up derived attributes, such as mana and spell crit chance.

I noticed this because there's a difference between my armory and a wishlist that has exactly what my armory shows.

Rushster
30-01-2008, 08:45 PM
Thanks cmccad

Much appreciated. I will get the guys to check this later today.

For Paladins with the "Divine Intellect" talent (5/5) you're sometimes a point off. It seems you are using:

floor((base_int+equipment_int)*1.1)

when you should be using:

floor(base_int*1.1) + floor(equipment_int*1.1)

e.g.
floor((83+359)*1.1) = 486
floor(83*1.1) + floor(359*1.1) = 485

For int, it's not such a big deal to be a point off, but it messes up derived attributes, such as mana and spell crit chance.

I noticed this because there's a difference between my armory and a wishlist that has exactly what my armory shows.