Talk:Trading and item pricing: Difference between revisions

Jump to navigation Jump to search
Tags: Reply Source
Tags: New topic Source
Line 33: Line 33:


** the page mentions the effect of your persuasion skill on prices, your CHA influences your persuasion skill.
** the page mentions the effect of your persuasion skill on prices, your CHA influences your persuasion skill.
== Discount Percentage ==
I was puzzled by what is shown in the discount percentage, so I did a bit of investigation resulting in the following findings:
price_modifier = (3.0 - attitude / 200 - persuasion / 10)
merchant sell price = base price * price_modifier
notes:
<code>| persuasion | attitude | discount % | price_modifier |
|------------+----------+------------+----------------|
|        -1 |        0 |        +3% |            3.1 |
|          9 |      100 |      -88% |            1.6 |
|          9 |        0 |      -43% |            2.1 |
|          4 |        0 |      -15% |            2.6 |
|          0 |        0 |          0 |            3.0 |
</code>
discount_percent = (1 - 3.0 / price_modifier) * 100 [[User:Tulth|Tulth]] ([[User talk:Tulth|talk]]) 23:09, 3 April 2024 (CEST)