You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm often searching for fractured bases and would like to buy the ones with a good percentile, meaning the ones which are at the higher end of the possible values.
This is especially true for weapons with elemental damage rolls.
The required info is all there in the HTML and could be easily calculated from there and updated into the DOM.
Here is an example result from a spine bow search:
<divclass="fracturedMod" data-mod="0"><spanclass="lc l pr">
P2
<spanclass="d"> [137—188 to 279—325]</span></span><spanclass="lc s" data-field="stat.fractured.stat_709508406">Adds 160 to 281 Fire Damage</span><spanclass="lc r pr"><spanclass="d">Cremating (≥74)</span></span></div>
Just to be clear what I want.
The current roll is (160 + 281) / 2 = 220,5.
The max roll would be (188 + 325) / 2) = 256,5.
The min roll is (137 + 279) / 2 = 208
The percentile of the current roll is 100 / (max - min) * (current - min) (in this example 25,77%)
I'M not sure if you accept PR and if this feature would be desirable, but I could add it myself if wanted.
The text was updated successfully, but these errors were encountered:
I'm often searching for fractured bases and would like to buy the ones with a good percentile, meaning the ones which are at the higher end of the possible values.
This is especially true for weapons with elemental damage rolls.
The required info is all there in the HTML and could be easily calculated from there and updated into the DOM.
Here is an example result from a spine bow search:
Just to be clear what I want.
The current roll is
(160 + 281) / 2 = 220,5
.The max roll would be
(188 + 325) / 2) = 256,5
.The min roll is
(137 + 279) / 2 = 208
The percentile of the current roll is
100 / (max - min) * (current - min)
(in this example 25,77%)I'M not sure if you accept PR and if this feature would be desirable, but I could add it myself if wanted.
The text was updated successfully, but these errors were encountered: