Daggerfall Mod:Daggerfall Unity/Bible/Critical Strike
The UESPWiki – Your source for The Elder Scrolls since 1995
Daggerfall Unity: Critical Strike[edit]
Critical Strike is one of the skills in the game. The full formula as related to combat follows:
if (Dice100.SuccessRoll(attacker.Skills.GetLiveSkillValue(DFCareer.Skills.CriticalStrike))) { chanceToHitMod += attacker.Skills.GetLiveSkillValue(DFCareer.Skills.CriticalStrike) / 10
This means that, when you swing to attack an enemy in combat, the game calculates on a 1 to 100 roll whether Critical Strike will successfully activate. If it does, the player's attack gains a bonus of (Critical Strike/10) points in the to-hit formula. See the Combat Formula page.