Maintenance for the week of November 25:
• [COMPLETE] Xbox: NA and EU megaservers for maintenance – November 27, 6:00AM EST (11:00 UTC) - 9:00AM EST (14:00 UTC)
• [COMPLETE] PlayStation®: NA and EU megaservers for maintenance – November 27, 6:00AM EST (11:00 UTC) - 9:00AM EST (14:00 UTC)

Spell Crit % vs Spell Crit Rating

Mix
Mix
✭✭✭✭✭
I can't recall if this changed in 1.6.3 or earlier, but I know it wasn't in the original as my character copy had spell critical % on her gear.

When I logged into the pts yesterday, made a v14 template, and was looking through skills I noticed that all skills/abilities/gear now use spell critical rating (instead of %) but the character screen still shows spell critical %. Curious to find out how much rating/% was needed I did a few quick calculations.

base spell critical % is 10%.
2pce Aether = 664 spell critical rating = 13.2%
3 pce Aether = 1328 spell critical rating = 16.3%
Inner Light = 2099 = 20.0%
5 pce Aether (light armor Prodigy skill) = 3427 spell critical rating = 26.3%
5 pce Aether + Prodigy + Inner Light = 5526 spell critical rating = 36.3%
*note I am adding up the spell critical rating from tooltips/gear as it isn't displayed on the character screen. Prodigy = 2099 spell crit rating, Inner Light = 2099 spell crit rating)

So, rating/% is: (spell critical rating/% spell critical gained)

664/3.2% = 207.5
1328/6.3% = 210.8
2099/10.0% = 209.9
3427/16.3% = 212.1
5526/26.3% = 210.1

I expected them to be the same value. You need x spell crit rating to gain 1% spell crit.

When I saw the beginning of the trend I thought that it was increasing the rating needed for 1% spell crit the higher your spell crit/rating was, but that trend doesn't persist at all. I know they are quite similar and we could say it takes "about" 210 spell critical rating for 1% of spell critical % but it would be nice if we had the formula for this. Is this variation intended?

Anyone else have thoughts on this? Perhaps EU players with more spell critical gear to swap around to get more numbers...
  • Garkin
    Garkin
    ✭✭✭
    From ESOUIDocumentationP6.txt:

    * GetCriticalStrikeChance(*number* _statValue_, *bool* _useMin_)
    ** _Returns:_ *number* _chance_

    So this command /script d(GetCriticalStrikeChance(664, false)) will print how many percent critical chance will get your current character if you add 664 critical rating (for VR14 character it is 3.1631%).

    If you want make it a bit easier for use, you can define slash command (put this line to some existing .lua file in your addons folder):
    SLASH_COMMANDS["/crit"] = function(val) d(("%06.04f%%"):format(GetCriticalStrikeChance(tonumber(val), false))) end
    

    And then you can use simple /crit 664 to do the math.

    (I have defined this slash command in CriTip - simple addon which displays critical chance on ability tooltips - CriTip-0.3-Update6.zip)
    Edited by Garkin on February 21, 2015 5:34AM
    Garkin / EU / CSF guild
    My addons: SkyShards, LoreBooks, Dustman, Map Coordinates, No, thank you, ... (full list)
    I'm taking care of: Azurah - Interface Enhanced, Srendarr - Aura, Buff & Debuff Tracker and more
    My folder with updated/modified addons: DROPBOX
  • Garkin
    Garkin
    ✭✭✭
    100% critical chance = 2 * (level + veteran rank) * (100 + level + veteran rank)

    For lvl 10 character it is:
    2 * (10 + 0) * (100 + 10 + 0) = 2200 ciritcal rating gives 100% critical chance

    For VR14 character it is:
    2 * (50 + 14) * (100 + 50 + 14) = 20992 critical rating gives 100% critical chance
    Edited by Garkin on February 27, 2015 12:00AM
    Garkin / EU / CSF guild
    My addons: SkyShards, LoreBooks, Dustman, Map Coordinates, No, thank you, ... (full list)
    I'm taking care of: Azurah - Interface Enhanced, Srendarr - Aura, Buff & Debuff Tracker and more
    My folder with updated/modified addons: DROPBOX
  • killedbyping
    killedbyping
    ✭✭✭✭
    Lol, didnt ZOS stated that they removed dimishing returns ?
Sign In or Register to comment.