Difference between revisions of "User talk:Rasikko"
imported>Rasikko m |
imported>Rasikko m |
||
Line 85: | Line 85: | ||
</source> | </source> | ||
This works well when the skill is at level 100. Testing with skill 0, and or any levels before 100, another piece of the puzzle is missing unfortunately. Level 100 is the only level that really matters for the Enchanting skill anyhow, so I think this will still be very useful to folks. More testing will be carried out before I put this on respective pages. [[User:Rasikko|Rasikko]] ([[User talk:Rasikko|talk]]) 2017-11-29T14:03:58 (EST) | This works well when the skill is at level 100. Testing with skill 0, and or any levels before 100, another piece of the puzzle is missing unfortunately. Level 100 is the only level that really matters for the Enchanting skill anyhow, so I think this will still be very useful to folks. More testing will be carried out before I put this on respective pages. [[User:Rasikko|Rasikko]] ([[User talk:Rasikko|talk]]) 2017-11-29T14:03:58 (EST) | ||
:There are quite a few problems that have sprung up now that may be beyond my knowledge to over come hmm... but at least I figured out how to get the value for level 100. [[User:Rasikko|Rasikko]] ([[User talk:Rasikko|talk]]) 2017-11-29T15:43:42 (EST) |
Revision as of 15:43, 29 November 2017
Enchanted Item Gold Value Mystery
I'm trying to solve the mystery of calculating the gold value for player enchanted items. This was figured out for weapons, but that formula doesn't work for non weapons. My findings so far..:
- The maximum skill level to effect an enchanted item's gold value is capped at 100.
- The lower the skill level, the higher the enchanted item's gold value will be.
- The gold value boosted from tempering is counted. Exact calculations unknown.
- Perks have no effect on the gold value.
The chart below uses an unenchanted helmet, with its base gold value in the first column. The value in the third column is the value when it's enchanted. The enchantment is Fortify Alteration. The bold value is the default skill level.
Base Value | Skill Level | Modified Cost |
220 | 0 | 1277 |
- | 1 | 1202 |
- | 10 | 1041 |
- | 15 | 987 |
- | 20 | 943 |
- | 30 | 867 |
- | 40 | 804 |
- | 50 | 748 |
- | 60 | 698 |
- | 70 | 651 |
- | 80 | 608 |
- | 90 | 568 |
- | 99 | 533 |
- | 100 | 529 |
Judging by the difference from value at Skill 0 and Skill 15, the initial value the gold value decays from is 290.
I've found a formula from the UESP, which does work some but the portion involving the skill is still unknown to me:
BaseItemCost + (0.12 * SoulGemPower)
; Working example: 220 + (0.12 * 3000) = 580; This gets cut down to 529 with 100 skill.
Where SoulGemPower is the value of the current soul trapped in the Soul Gem.
Mystery Almost Solved
I have discovered the next missing piece for the above formula for getting the gold value for player created enchanted items.
Gold Value = (BaseItemGoldValue + (0.12 * SoulGemPower) - ((SkillLevel * 0.5)) - 1
;Working example: (220 + (0.12 * 3000) - (100*0.5)) - 1 = 529.
This works well when the skill is at level 100. Testing with skill 0, and or any levels before 100, another piece of the puzzle is missing unfortunately. Level 100 is the only level that really matters for the Enchanting skill anyhow, so I think this will still be very useful to folks. More testing will be carried out before I put this on respective pages. Rasikko (talk) 2017-11-29T14:03:58 (EST)