How can I remove the green outline around the National parks?

So I found the right code in Overlay.artdef

Code:
<Element>
                <m_Fields>
                    <m_Values/>
                </m_Fields>
                <m_ChildCollections>
                    <Element>
                        <m_CollectionName text="Filled"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                    </Element>
                    <Element>
                        <m_CollectionName text="Texture"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                    </Element>
                    <Element>
                        <m_CollectionName text="Model"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                    </Element>
                    <Element>
                        <m_CollectionName text="SplineBorder"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                        <Element>
                            <m_Fields>
                                <m_Values>
                                    <Element class="AssetObjects..BLPEntryValue">
                                        <m_EntryName text="MoveBorder"/>
                                        <m_XLPClass text="OverlayTexture"/>
                                        <m_XLPPath text="Overlay.xlp"/>
                                        <m_BLPPackage text="Overlay"/>
                                        <m_LibraryName text="OverlayTexture"/>
                                        <m_ParamName text="SplineTexture"/>
                                    </Element>
                                    <Element class="AssetObjects..RGBValue">
                                        <m_r>41.000000</m_r>
                                        <m_g>164.000000</m_g>
                                        <m_b>13.000000</m_b>
                                        <m_ParamName text="Color"/>
                                    </Element>
                                    <Element class="AssetObjects..IntValue">
                                        <m_nValue>128</m_nValue>
                                        <m_ParamName text="Color_Alpha"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>0.500000</m_fValue>
                                        <m_ParamName text="MidFOWSaturation"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>1.000000</m_fValue>
                                        <m_ParamName text="MidFOWBrightness"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>4.000000</m_fValue>
                                        <m_ParamName text="SplineWidth"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>16.000000</m_fValue>
                                        <m_ParamName text="SplineSegmentLength"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>0.010000</m_fValue>
                                        <m_ParamName text="SplineScrollSpeed"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>0.000000</m_fValue>
                                        <m_ParamName text="FOWStateAlpha_Hidden"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>1.000000</m_fValue>
                                        <m_ParamName text="FOWStateAlpha_Revealed"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>1.000000</m_fValue>
                                        <m_ParamName text="FOWStateAlpha_Visible"/>
                                    </Element>
                                </m_Values>
                            </m_Fields>
                            <m_ChildCollections/>
                            <m_Name text="NationalParksBorder"/>
                            <m_AppendMergedParameterCollections>false</m_AppendMergedParameterCollections>
                        </Element>
                    </Element>
                    <Element>
                        <m_CollectionName text="LensModel"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                    </Element>
                </m_ChildCollections>
                <m_Name text="NationalParkOverlay"/>
                <m_AppendMergedParameterCollections>false</m_AppendMergedParameterCollections>
            </Element>

I just don't know how to modify it so that the border disappears. I tried removing the code, along with all mentions of "parks" in this file, but it results in a wide, blurry, white border. I tried changing the "SplineWidth" from 4.0 to 0.0, but it had no effect.

Does anyone know what to do next?
 
Okay, I figured it out. This one works fine without any bugs.

Code:
<Element>
                <m_Fields>
                    <m_Values/>
                </m_Fields>
                <m_ChildCollections>
                    <Element>
                        <m_CollectionName text="Filled"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                    </Element>
                    <Element>
                        <m_CollectionName text="Texture"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                    </Element>
                    <Element>
                        <m_CollectionName text="Model"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                    </Element>
                    <Element>
                        <m_CollectionName text="SplineBorder"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                        <Element>
                            <m_Fields>
                                <m_Values>
                                    <Element class="AssetObjects..BLPEntryValue">
                                        <m_EntryName text="MoveBorder"/>
                                        <m_XLPClass text="OverlayTexture"/>
                                        <m_XLPPath text="Overlay.xlp"/>
                                        <m_BLPPackage text="Overlay"/>
                                        <m_LibraryName text="OverlayTexture"/>
                                        <m_ParamName text="SplineTexture"/>
                                    </Element>
                                    <Element class="AssetObjects..RGBValue">
                                        <m_r>NONE</m_r>
                                        <m_g>NONE</m_g>
                                        <m_b>NONE</m_b>
                                        <m_ParamName text="Color"/>
                                    </Element>
                                    <Element class="AssetObjects..IntValue">
                                        <m_nValue>NONE</m_nValue>
                                        <m_ParamName text="Color_Alpha"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>NONE</m_fValue>
                                        <m_ParamName text="MidFOWSaturation"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>NONE</m_fValue>
                                        <m_ParamName text="MidFOWBrightness"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>NONE</m_fValue>
                                        <m_ParamName text="SplineWidth"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>NONE</m_fValue>
                                        <m_ParamName text="SplineSegmentLength"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>NONE</m_fValue>
                                        <m_ParamName text="SplineScrollSpeed"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>NONE</m_fValue>
                                        <m_ParamName text="FOWStateAlpha_Hidden"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>NONE</m_fValue>
                                        <m_ParamName text="FOWStateAlpha_Revealed"/>
                                    </Element>
                                    <Element class="AssetObjects..FloatValue">
                                        <m_fValue>NONE</m_fValue>
                                        <m_ParamName text="FOWStateAlpha_Visible"/>
                                    </Element>
                                </m_Values>
                            </m_Fields>
                            <m_ChildCollections/>
                            <m_Name text="NationalParksBorder"/>
                            <m_AppendMergedParameterCollections>false</m_AppendMergedParameterCollections>
                        </Element>
                    </Element>
                    <Element>
                        <m_CollectionName text="LensModel"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                    </Element>
                </m_ChildCollections>
                <m_Name text="NationalParkOverlay"/>
                <m_AppendMergedParameterCollections>false</m_AppendMergedParameterCollections>
            </Element>

I hope it helps anyone in the future.
 
Back
Top Bottom