HaldorOverhaul
Transforms Haldor into a full merchant with buy/sell panels, 580+ items, recipe-based pricing, search filters, category tabs, and full controller support.
| Date uploaded | a day ago |
| Version | 1.0.18 |
| Download link | ProfMags-HaldorOverhaul-1.0.18.zip |
| Downloads | 451 |
| Dependency string | ProfMags-HaldorOverhaul-1.0.18 |
This mod requires the following mods to function
denikson-BepInExPack_Valheim
BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.
Preferred version: 5.4.2200ValheimModding-JsonDotNET
Shared version 13.0.3 of Json.NET from Newtonsoft, net45 package for use in Valheim mods. Maintained by the ValheimModding team.
Preferred version: 13.0.4README
๐ Haldor Trading Overhaul
Transform Haldor into the ultimate merchant with full buy/sell functionality and a personal bank
โจ Features
Browse and buy over 590 items from Haldor, organized by category with real-time search. Sell your unwanted gear directly back to him at 30% of the buy price. Items unlock progressively as you defeat bosses, keeping the economy tied to your progression. All item lists and prices are driven by JSON config files you can edit freely, and a Python script is included to regenerate them from scratch.
The mod has full controller support. Use LB/RB to switch panels, D-Pad or left stick to navigate, A to confirm, X to toggle categories, and B to close. Everything is mapped and works seamlessly alongside the mouse.
๐ฆ Bank
Haldor acts as your personal banker. Your bank balance funds all purchases. When you buy something, the cost is deducted from the bank, and when you sell, the proceeds go straight in.
To access the bank, open the shop at Haldor and click the Bank tab. Use Deposit to move coins from your inventory into the bank, and Withdraw to take them back out.
๐ค Compatible Mods
Bows Before Hoes by Azumatt โ All bows, quivers, and arrows added by this mod are fully supported. Install both mods and they will appear in Haldor's shop automatically. Items are locked behind the same boss progression gates as vanilla items, so they unlock naturally as you play.
Mod Conflict Warning
This mod targets Haldor specifically by prefab name. The custom UI only intercepts interactions with Haldor โ all other traders (Hildir, modded trader NPCs) continue to use the vanilla StoreGui as normal.
However, any mod that alters Haldor himself may cause conflicts:
- Mods that replace or rename Haldor's prefab
- Mods that patch
StoreGui.Showand swallow the call before HaldorOverhaul sees it - Mods that modify Haldor's inventory or dialogue in ways that interfere with the UI hooks
If you experience issues (UI not opening, vanilla UI appearing instead of the custom one, or crashes when visiting Haldor), try disabling other Haldor-related mods one at a time to identify the conflict.
๐ฆ Installation
Install BepInEx, then download the latest release and extract it to BepInEx/plugins/HaldorOverhaul/. Move the two config files (HaldorOverhaul.haldor.buy.json and HaldorOverhaul.haldor.sell.json) to BepInEx/config/, then launch Valheim.
โ๏ธ Configuration
Two JSON files control what Haldor buys and sells. buy.json lists items he sells to you; sell.json lists items you can sell to him. Each entry looks like this:
{
"item_prefab": "SwordIron",
"item_quantity": 1,
"item_price": 4234,
"must_defeated_boss": "defeated_gdking"
}
Leave must_defeated_boss empty to make an item always available. Run generate.py to regenerate both files from scratch using the built-in pricing system.
๐ Credits
This is my first Valheim mod! I really hope people enjoy it.
Inspired by shudnal's TradersExtended ยท Item data sourced from the Jotunn Library
Made with โค๏ธ for the Valheim community
CHANGELOG
Changelog
1.0.19
- Added shared bank balance sync with HildirOverhaul (both traders now read/write the same bank balance)
- Internal bank persistence now migrates and mirrors legacy Haldor/Hildir keys into a shared key
1.0.18
- Fixed custom trader UI so it only applies to Haldor
- Other traders (Hildir and modded NPCs) now use the vanilla
StoreGui - Improved compatibility with mods that add their own traders
1.0.17
- Improved trader UI layout and visual polish
1.0.16
- Removed boss progression gates from treasure sell items (
Amber,AmberPearl,Ruby,SilverNecklace,GoldRuby) - Players can now sell treasure to Haldor at any point in progression
1.0.15
- Added custom UI sprites for search bar and category buttons (
SearchBarBackground.png,CategoryBackground.png) - Fixed item category classification to use enum comparison instead of string matching
- Fixed panel tinting so panels use a clean grey tint instead of brownish sprite-based coloring
- Fixed TMP font warnings by deferring TextMeshProUGUI initialization until a font is assigned
- Updated category button icons (bronze axe, troll leather helmet, wooden shield, stamina mead, bronze)
- Added a grey tint overlay on the Buy/Sell action button to match panel styling
1.0.14
- Added BowsBeforeHoes mod support
- Added 10 BowsBeforeHoes items to buy/sell configs (3 bows, 4 quivers, 3 arrows) with recipe-based pricing
- Doubled list panel scroll speed
1.0.13
- Fixed standalone bank UI cursor being locked when opened with the Z key
- Fixed bank UI registration so it behaves as a store UI (camera and input now work correctly)
- Removed Z key shortcut for bank; bank access now happens through the trader UI
- Added full controller support to the standalone bank panel
1.0.12
- Bug fixes and stability improvements
1.0.11
- Removed CurrencyPocket dependency requirement
1.0.10
- Bug fixes and internal maintenance updates
1.0.9
- Added Haldor's Bank system; bank balance funds purchases and selling deposits directly into the bank
- Added Bank tab to the trader UI and a standalone bank panel (Z key)
- Added
setbankbalanceconsole command (fixed registration so it now works in-game) - Reverted bank panel to a clean text layout
- Additional bug fixes and performance improvements
1.0.8
- Fixed controller navigation issues with item list scrolling and selection highlighting
- Fixed controller inability to select category headers for expand/collapse
- Fixed scroll position not resetting when switching tabs
- Fixed multiple UI bugs and layout issues
- Suppressed Haldor talk bubbles while the trading UI is open
- Added
setcoinsconsole command for testing - Updated UI design
1.0.7
- Updated trader UI visuals
- Bug fixes and interaction improvements
1.0.6
- Updated UI design
- Updated price generator script
- Updated config files
- Various bug fixes
1.0.5
- Added JsonDotNET and CurrencyPocket as required dependencies
1.0.4
- Updated dependency configuration and packaging metadata
1.0.3
- Added capes to the buy menu
1.0.2
- Documentation updates in
README.md
1.0.1
- Documentation updates in
README.md
1.0.0
- Initial release