Difference between revisions of "User talk:Gozolo"
no edit summary
imported>Gozolo (New page: I'm new to 'wiki' CMS, but I made a little investigation on how barter works in Fallout 3, so if a moderator finds it useful it can be added to the site. Meanwhile I'll post it here There...) |
imported>Gozolo |
||
Line 4: | Line 4: | ||
!!! The skillcheck is based ONLY on the Player's 'barter' skill. Vendor's 'barter' skill has no effect on a price. | !!! The skillcheck is based ONLY on the Player's 'barter' skill. Vendor's 'barter' skill has no effect on a price. | ||
Parameters: | Parameters: | ||
Line 11: | Line 12: | ||
fBarterSellBase (default value = 0.45) | fBarterSellBase (default value = 0.45) | ||
fBarterSellMult (default value = 0.45) | fBarterSellMult (default value = 0.45) | ||
Buy from a vendor formula: | Buy from a vendor formula: | ||
Price = ( 'Item Value' * fBarterBuyBase ) + ( 'Item Value' * 'Skill' * fBarterBuyMult / 100 ) | Price = ( 'Item Value' * fBarterBuyBase ) + ( 'Item Value' * 'Skill' * fBarterBuyMult / 100 ) | ||
Sell to a vendor formula: | Sell to a vendor formula: | ||
Price = ( 'Item Value' * fBarterSellBase ) + ( 'Item Value' * 'Skill' * | Price = ( 'Item Value' * fBarterSellBase ) + ( 'Item Value' * 'Skill' * fBarterSellMult / 100 ) | ||
Examples: | |||
As an example I'll take 'Ol' Painless' Hunting Rifle, which value is '250'. | |||
With default parameters the results will be (considering that Player's 'barter' skill is 50): | |||
Buying from a vendor price will be 331. | |||
Price = ( 250 * 1.55 ) + ( 250 * 50 * (-0.45) / 100 ) = 387.5 - 56.25 = 331.25 | |||
Selling to a vendor price will be 169. | |||
Price = (250 * 0.45 ) + ( 250 * 50 * 0.45 / 100 ) = 112.5 + 56.25 = 168.75 | |||
Line 25: | Line 40: | ||
Thanks for your attention. I hope it'll will help. | Thanks for your attention. I hope it'll will help. | ||
--[[User:Gozolo|gozolo]] | --[[User:Gozolo|gozolo]] 00:21, 27 June 2009 (UTC) |