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.
Question
aethel
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.
3 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now