NuAshworld wiki

Trade

11th May 2021 at 1:19am

Some Locations offer a Vendor NPC that can be bartered with. They have a stock that replenishes every Tick, but will also keep player Items that are not part of their stock indefinitely.

The vendors will agree to any barter where the value you offer is equal to or higher than the value of their side of the trade.

The value of items you offer doesn't ever change: it's the item base price. The value of vendor's items changes with their (and your!) Barter skill though:

Price=BasePrice×BarterRatioDiscount \mathit{Price} = \lfloor\mathit{BasePrice} \times \mathit{BarterRatio} - \mathit{Discount}\rfloor

BarterRatio=VendorBarterSkill+160PlayerBarterSkill+160×2 \mathit{BarterRatio} = \frac{\mathit{VendorBarterSkill} + 160}{\mathit{PlayerBarterSkill} + 160} \times 2

Discount={25%if player has Master Trader perk0%otherwise \mathit{Discount} = \begin{cases} 25\% & \text{if player has Master Trader perk} \\ 0\% & \text{otherwise} \\ \end{cases}

So for example a Stimpak with the base price of $175, when bought by a player with Barter skill 40% (without the MasterTrader perk) from a vendor with Barter skill 80%, will cost:

Price=175×80+16040+160×20% \mathit{Price} = \lfloor 175 \times \frac{80 + 160}{40 + 160} \times 2 - 0\% \rfloor

which amounts to $420, while a player with Barter skill 120% and the MasterTrader perk active will be able to buy the Stimpak for the price:

Price=175×80+160120+160×225% \mathit{Price} = \lfloor 175 \times \frac{80 + 160}{120 + 160} \times 2 - 25\% \rfloor

which amounts to $225.

Caps always have the value of $1, irrespective of which side of trade they're on.


Pages linking here: Vendor