Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Either way thank you for this.
It works fine with 94 other mods installed'
Would love to see updated versions on Nexus. I have problems with steam mods
That mod was so handy to get an overview of how well a unit was equipped, and it would be even better for mods that add new units or troop sets, like MCGA, which has some troops with over a hundred different sets, lol
Was kinda disappointed when I found out that this mod didn't do that, still cool though.
https://github.com/DiplomacyTeam/Bannerlord.Diplomacy/issues/216
Message: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. "
Hm. It's definitely not Encyclopedia Extender.
Doesn't seem like a programming error but something about your specific setup.
The exception itself is very atypical. If the game was running fine for a while and suddenly stopped working, you can try validating the cache through steam or reinstalling.
I'm assuming that you didn't do anything funky like moving the game into another directory or running ROT through a debugger, though.
namespace Bannerlord.EncyclopediaExtender.EncyclopediaHeroPage
{
public partial class EncyclopediaHeroPageVMMixin : BaseViewModelMixin<EncyclopediaHeroPageVM>
{
public override void OnRefresh()
{
// ...
this.Attributes.Clear();
base.ViewModel.Stats.Clear();
base.ViewModel.Refresh();
if (this._hero == null || base.ViewModel == null)
{
return;
}
// ...
}
}
}
Info section fields are in the Stats property of the ViewModel object. For them to get removed another modder has to be clearing that shared collection, which doesn't make any logical sense - but I've seen BannerKings do that for example.
https://github.com/DiplomacyTeam/Bannerlord.Diplomacy/issues/216
Not sure the effects of moving it up, but as it fixes this bug, I'm gonna run it like this.
For the time being, please don't worry about these messages. And if you do experience crashes when using the encyclopedia with this mod, hit the permalink button in the report window and paste it in a comment here.
"encyclopedia extender failed to patch Detailed Character Creation, access type"
I'm curious what will happen to these lords next. After from what I assume was execution their state wasn't changed to death but rather a continuous imprisonment in heaven, hehe (the lord is marked as imprisoned but there is no party he belongs to, he isn't located in any settlement etc.). I wonder how the game will handle that.
And yeah, the issue was probably caused by Kill Them All, I've decompiled it to be sure if it really was the cause but man, that mod is a complete and utter mess under the hood.