OK, here I go.
On the previous page I posted about how I was working on how to determine the base roll of a piece of gear. The base roll being the integers Tenboro provided us in the past when he did a patch update and stated a range.
For example, physical mitigation for Kevlar is stated to be (20,30) on the 0.5.3 notes which would correspond to (4.2 , 6.3) physical mitigation, which matches the range I found for Kevlar Helmets. There is a separate roll for protection, so protection gear can fall outside this range. Also this range is modified by slot, so the numbers I gave you above only work on Kevlar Helms. The slot a piece of gear belongs too will modify the base roll and is then rounded before the base stat is found.
However in a recent patch things were made difficult due to two things. The first thing that made things difficult was the across the board buff all gear got based on their quality. This boost is about equal to the quality score of a piece of gear. Like a Legendary piece of gear will get nearly an extra +1 to the roll of all its stats, while a crude will only gets around +0.4 and average around +0.6. This quality piece can be calculated from the residuals when converting a base value to a roll, or by just looking at the base Primary Attribute Bonuses and seeing what value is in the hundredths place. This would give you a good ballpark estimate.
The second thing that makes things difficult on certain pieces of gear is the "Coolness" that has been bestowed to gear of Exquisite, Magnificent, or Legendary quality. This 5%, 10%, and 20% coolness is actually a factor that is applied to the base roll and then rounded before the base stat is found.
To determine the Base Roll of a piece of gear it needs to be converted from the base stat to the Total Roll, which is equal to the Piece Roll, Suffix Roll, and Quality Bonus.
CODE
Total_Roll = Scaled_Base_Roll + Scaled_Suffix_Roll + Quality_Bonus
or
Total_Roll = Base_Stat/Stat_Factor
The second equation would be used more commonly because the Base Stat of a piece of gear can be seen if you are using HV Hud Equipment Base Stat, or Cmal's Scaling Calculator and looking at the Base Stat of a piece of gear.
To go from Scaled Base Rolls and Scaled Suffix Rolls the following is used
CODE
Base_Roll = Round(Round(Scaled_Base_Roll/Quality_Mod,0)/Slot_Mod,0)
Suffix_Roll = Round(Round(Scaled_Suffix_Roll/Quality_Mod,0)/Slot_Mod,0)
where Quality_Mod = 1.2 for Legendary, 1.1 for Magnificent, 1.05 for Exquisite, and 1 otherwise
and Slot_Mod = 1.0 for helms and weapons/shields, 1.2 for body, 1.1 for legs, .9 for hands, and .8 for feet
To get from the Total Roll to the actual Base Roll or Base Stat to Total Roll takes some work, because it happens in a few steps and rounding occurs at many of these steps.
First lets go from a Base Stat to Total Roll.
Average Kevlar Helmet of Dampening will be the piece of gear used in the example, and Physical Mitigation will be the stat. 0.21 is the Stat Factor for Physical Mitigation.
Total_Roll = 5.8/0.21 = 27.619 which can then be split into 27 and 0.619 which correspond to the Scaled_Base_Roll and the Quality Bonus. In this case the Scaled Base Stat is equal to the Base stat because the quality is below exquisite, and the piece of gear is in a helm slot.
Now for something a bit more complicated.
Exquisite Kevlar Boots of Deflection. Once again Physical Mitigation will be the stat looked at.
Total_Roll = 5.01/.21 = 23.857 which can be split into 23 and 0.857 which correspond to the Scaled Base Stat and Quality Mod. Suffix mod is 0 because Deflection has no effect on Physical Mitigation. It would need to be found though trial and error if this was a Protection piece.
So now we need to go from the Scaled Base Roll to the actual Base Roll
Base_Roll = Round(Round(23/1.05,0)/.8,0)= 28
Step by step:
23/1.05=21.9 ~ 22
22/0.8= 27.5 ~ 28
so this piece isn't that far off from the max possible Physical Mitigation for a non Protection piece of gear.
To get back to the Scaled Roll which is in turned used to determine the base stat use the following
CODE
Scaled_Base_Roll=Round(Round(Base_Roll*Slot_Mod,0)*Quality_Mod,0)
Scaled_Base_Roll=Round(Round(28*.8,0)*1.05,0)=23
Step by step:
28*.8=18.4 ~ 22
22*1.05=23.1 ~ 23
which can be added back to the Quality Bonus to get the Total Roll and turned back into the base stat
23+0.857=23.857
23.857*.21=5.01
If the Base Roll had been a 30, which is the best for Kevlar then the boots would've had a scaled base roll of 25, so the best an exquisite non protection boot can be without the quality modifier would be 5.29 and if given the same bonus as the example its Mitigation would be 5.43. Legendary Boots with a full +1 mod would be 6.3 which would make them as good as the old helms!
If someone would like to help me set up a wiki page where the Factor Table and min/max base rolls for each type of gear can be posted that would be great. I'm not sure if I could make it myself without making it terrible. Also I can post the factor table here if you would like. The min/max table is still in progress.
Special thanks to Varst, and Tiap.
Varst for pushing me in the right direction and collaboration
Tiap for a script to help me compile all the data needed
This post has been edited by skillchip: Dec 4 2011, 09:22
My wiki contribution:
Equipment Ranges Updated as of
12/14/2017, contribute gear that falls out of the wiki ranges
here If you really want to help download the script in this topic:
Equipment Parser and help contribute to the database! or download the script here: [
dl.dropboxusercontent.com]
ScriptHit me up in the IRC or through PM for specific HV related questions.
Fun Quotes from IRC
<~tenboro> because I just finished revising my log analyzing tool to work with the new battle log, aand.. it would seem that mages kinda got screwed
<~tenboro> panic achieved. tenboro away!
<Jenga> Evil-Skillchap, through HV.. I understand why distribution of wealth doesn't work, I think its slowly turning me republican
<~tenboro> I don't even remember anything about equipment generation
<~tenboro> and it will soon be moot anyway
<@Maximum_Joe> That's rather ominous
<Mika_Kurogane> ohoho
<viperit> O.o
<~tenboro> DARK DAYS AHEAD
<Jenga> ominous in a good way :X
<~tenboro> but srsly I'm changing it
<Jenga> Evil-Skillchap, you and I have some work to do in the future