Whenever there's a merged plugin present, DynDOLOD shows an error message box saying "'02000D62' is not a valid integer value". After I click OK it appears to run fine but no LODs actually show up ingame.
Changing Edit Scripts\DynDOLOD\lib\optionsform.pas like this (around line 128):
// check if mod name was merged
s := DataPath + 'merge\' + StringReplace(GetFileName(FileByIndex(i)), '.esp', '', [rfReplaceAll]) + '_map.txt';
- if FileExists(s) then begin
+ if false and FileExists(s) then begin
Fixes the issue, althrough that probably kills merged mod support (which luckily I don't need).
The first few lines of my MergedArmorMods_map.txt look like this:
I don't know if that's how this file is supposed to look or not, but it appears to error out at the second line: the ID is the same one shown in the errors.
Hello,
Whenever there's a merged plugin present, DynDOLOD shows an error message box saying "'02000D62' is not a valid integer value". After I click OK it appears to run fine but no LODs actually show up ingame.
Changing Edit Scripts\DynDOLOD\lib\optionsform.pas like this (around line 128):
Fixes the issue, althrough that probably kills merged mod support (which luckily I don't need).
The first few lines of my MergedArmorMods_map.txt look like this:
I don't know if that's how this file is supposed to look or not, but it appears to error out at the second line: the ID is the same one shown in the errors.
Share this post
Link to post
Share on other sites