The Blacklist - flea market enhancements 2.0.4b

Do not ask when mod authors will update their mods or if they can upload older versions of their mods.
Bothering mod authors will lead to warnings and repeat offenses will lead to bans.
Due to an unusually high volume of traffic, our site may be experiencing intermittent slowdowns. If you notice any issues, log out of your account and browse anonymously so you can better utilize caching or try using forge.sp-tarkov.com to search for and download mods.

Disables the BSG blacklist in the flea market. Rebalances the prices of blacklisted ammo like Igolnik. Speeds up sell times for offers. Additional configs to set flea prices for any item in the game.

[tabmenu]

Features:

- Disables the 'BSG Blacklist' in the flea market so you can buy/sell high end ammo and gear again.

- Rebalances the price of ammo depending on their stats (details below). The default flea prices for high end ammo were too low, Igolnik was cheaper than some low level bullets.

- Rebalances the price of some blacklisted guns.

- Configuration to make cheap offers made by you sell faster.

- Configuration to reduce number of items for sale on the flea market to simulate scarcity.

- Configuration to add an extra offer slot.

- Configuration to allow you to set a custom price override for items on the flea market.

- Configuration to blacklist any item on the flea market.


Ammo pricing:

Pricing for high end ammo is based on their penetration power and damage. Higher the pentration and damage, higher the price. Formula:

newPrice = advancedConfig.baselineBulletPrice * penetrationMultiplier * damageMultiplier * config.blacklistedAmmoAdditionalPriceMultiplier;


To increase the price of the previously blacklisted ammo across the board, simply increase the blacklistedAmmoAdditionalPriceMultiplier setting in config.json.


Enable useBalancedPricingForAllAmmo in config.json to apply the above formula to all bullets and shotgun rounds.


Custom flea market pricing:

You can change the flea pricing of any item using the customItemConfigs[] setting in config.json.

First, get the item._id from https://db.sp-tarkov.com/search

Then add a new entry to customItemConfigs, following the existing pattern:

{

"itemId": "5c0a840b86f7742ffa4f2482", // item._id you just got from above

"fleaPriceMultiplier": 1.5, // the new price will be the existing price times this number

"fleaPriceOverride": 42069 // if you add a value for this, this will be the flea market value, ignoring the multiplier above

}


Blacklist items:

Similarly, you can blacklist any item using the above customItemConfigs. Just find the itemId and set property "blacklisted" to true.