Difference between revisions of "FJumpFallSkillMult"
Jump to navigation
Jump to search
m
no edit summary
imported>Tejón |
imported>Tejón m |
||
Line 8: | Line 8: | ||
'''Note:''' fJumpFallSkillBase defaults to 1.25, so the result of this formula with default settings is that damage is multiplied by 1.25 at Acrobatics of 0, and by 1.24 at Acrobatics of 100. It is very likely that the intended result was 0.25 at Acrobatics of 100, which would require a value of -1.0 here (or the removal of the division by 100 from the formula, but that change can't be made by modders). | '''Note:''' fJumpFallSkillBase defaults to 1.25, so the result of this formula with default settings is that damage is multiplied by 1.25 at Acrobatics of 0, and by 1.24 at Acrobatics of 100. It is very likely that the intended result was 0.25 at Acrobatics of 100, which would require a value of -1.0 here (or the removal of the division by 100 from the formula, but that change can't be made by modders). | ||
An analysis by Kivan of the Unofficial Oblivion Patch | An analysis by Kivan of the Unofficial Oblivion Patch yielded a different suggestion. Acrobatics is internally capped at 255 instead of at 100 like other skills, and using a value of -1.0 here causes a skill of 125 or higher to completely negate falling damage. He recommends -0.4902 (i.e. 125/255), which does not negate all damage until the 255 cap is reached. The UOP sets fJumpFallSkillMult to -0.4902 starting with version 2.2. |