fBargainOfferMulti - используется для определения множителя, который учитывается при расчете стоимости предметов, которые игрок может продавать или покупать у торговцев в игре.
Значение по умолчанию: -4
Код из OpenMW:
all prices are negative when player is buying, positive when player is selling
accept if playerOffer <= merchantOffer (same for buy and sell)
if npc is a creature: reject (no haggle)
a = abs(merchantOffer)
b = abs(playerOffer)
if buying: d = int(100 * (a - b) / a)
if selling: d = int(100 * (b - a) / b)
clampedDisposition = clamp int(npcDisposition) to [0..100]