Yeah I'm disappointed they didn't fix it in the recent updates. If it's anything like in Warband it's really easy to fix.
TaleWorlds, sort it out boys and girls.
TaleWorlds, sort it out boys and girls.
Go to Steam\steamapps\common\Mount & Blade II Bannerlord\Modules\SandBoxCore\ModuleData open up spitems (you can use notepad if you have nothing to edit .xml files with) and delete all
>multiplayer_item="true"
that you find.
There you go, now you can buy all that items that are meant to be sold but aren't. Like the crowned helmet, highland warlords shoulders, and the Vlandian surcoats over mail.

I've been experiencing this too and found it really irritating. Found this fix somewhere else just now, it appears many of the items have a "multiplayer only" flag for whatever reason.
Amazed that this kind of thing could fly under the radar, it's very obvious the merchants aren't behaving as they should be. A lot of gear is missing from the game.
yeah hopefully the devs see this and make that quick fix so we dont have to personally make the game more enjoyable by editing their own mistakes.Oh dude, just tried this and it worked.
That's what I suspected. That it was some basic oversight. Hopefully it'll get addressed soon then.

Hey, do I delete only the <multiplayer_item="true" string? or do i need to keep the < symbol? or do I need to delete the whole thing altogether? I'm the worst at this stuff, thanks for the help.

Thank you! Appreciate it!The code should look something like this:
---------------------------------------------------
<Item multiplayer_item="true"
id="woven_turban"
name="{=ArPvuBYK}Woven Turban"
subtype="head_armor"
mesh="aserai_helmet_h"
culture="Culture.aserai"
weight="0.8"
appearance="0.5"
difficulty="0"
Type="HeadArmor">
<ItemComponent>
<Armor head_armor="10"
has_gender_variations="false"
hair_cover_type="all"
modifier_group="cloth_unarmoured"
material_type="Cloth"
beard_cover_type="type2" />
</ItemComponent>
<Flags Civilian="true"
UseTeamColor="true" />
</Item>
---------------------------------------------------------
Only delete the following line: "multiplayer_item="true"". Nothing else.
The code should look like this:
----------------------------------------------------------
<Item
id="woven_turban"
name="{=ArPvuBYK}Woven Turban"
subtype="head_armor"
mesh="aserai_helmet_h"
culture="Culture.aserai"
weight="0.8"
appearance="0.5"
difficulty="0"
Type="HeadArmor">
<ItemComponent>
<Armor head_armor="10"
has_gender_variations="false"
hair_cover_type="all"
modifier_group="cloth_unarmoured"
material_type="Cloth"
beard_cover_type="type2" />
</ItemComponent>
<Flags Civilian="true"
UseTeamColor="true" />
</Item>
------------------------------------------------------------
The code should look something like this:
---------------------------------------------------
<Item multiplayer_item="true"
id="woven_turban"
name="{=ArPvuBYK}Woven Turban"
subtype="head_armor"
mesh="aserai_helmet_h"
culture="Culture.aserai"
weight="0.8"
appearance="0.5"
difficulty="0"
Type="HeadArmor">
<ItemComponent>
<Armor head_armor="10"
has_gender_variations="false"
hair_cover_type="all"
modifier_group="cloth_unarmoured"
material_type="Cloth"
beard_cover_type="type2" />
</ItemComponent>
<Flags Civilian="true"
UseTeamColor="true" />
</Item>
---------------------------------------------------------
Only delete the following line: "multiplayer_item="true"". Nothing else.
The code should look like this:
----------------------------------------------------------
<Item
id="woven_turban"
name="{=ArPvuBYK}Woven Turban"
subtype="head_armor"
mesh="aserai_helmet_h"
culture="Culture.aserai"
weight="0.8"
appearance="0.5"
difficulty="0"
Type="HeadArmor">
<ItemComponent>
<Armor head_armor="10"
has_gender_variations="false"
hair_cover_type="all"
modifier_group="cloth_unarmoured"
material_type="Cloth"
beard_cover_type="type2" />
</ItemComponent>
<Flags Civilian="true"
UseTeamColor="true" />
</Item>
------------------------------------------------------------