Ad placeholder

Talk:Trading and item pricing: Difference between revisions

Jump to navigation Jump to search
Tags: New topic Source
(One intermediate revision by the same user not shown)
Line 38: Line 38:
I was puzzled by what is shown in the discount percentage, so I did a bit of investigation resulting in the following findings:
I was puzzled by what is shown in the discount percentage, so I did a bit of investigation resulting in the following findings:


All data collected is from Honor mode.
Using the wiki formula, I calculate the price modifier per:
price_modifier = (3.0 - attitude / 200 - persuasion / 10)
price_modifier = (3.0 - attitude / 200 - persuasion / 10)
merchant sell price = base price * price_modifier


notes:
Measurements:


{| class="wikitable"
! 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>| persuasion | attitude | discount % | price_modifier |
And I find:
|------------+----------+------------+----------------|
discount_percent = (1 - 3.0 / price_modifier) * 100
|        -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)
[[User:Tulth|Tulth]] ([[User talk:Tulth|talk]]) 23:09, 3 April 2024 (CEST)
17
edits

Navigation menu