You probably did not change the .xpl files. They have priority when loading. Just copy the .lua and rename the copy to helper.xpl and then put it into a subst_01.cat (note folder structure).
The frames for the map are in the \ui\addons\ego_detailmonitor\menu_map.lua
helper.lua:
Code: Select all
semitransparent = { r = 0, g = 0, b = 0, a = 95 },
semitransparent1 = { r = 19, g = 46, b = 71, a = 100 },
transparent60 = { r = 0, g = 0, b = 0, a = 60 },
transparent = { r = 0, g = 0, b = 0, a = 0 },
transparent1 = { r = 19, g = 46, b = 71, a = 100 },
semitransparent1
and
transparent1
I have added.
For this I changed in menu_map.lua all help.color.semitransparent
and
help.color.transparent
in
help.color.semitransparent1
and
help.color.transparent1
so that only the map menus access the changed values in help.lua.
I included the whole thing in a mod, then I can quickly change it back to vanilla at any time.