Jump to content

Trouble w/ installer menu for NMM


xeightballx

Recommended Posts

So I wanted to do a simple and quick "install menu" for one of my mods using ModuleConfig.xml - For the most part, it works, but it's just not installing the actual files into the data folder. I've got no idea why.

 

Here's what I've got:

 

 

<?xml version="1.0" encoding="UTF-16" ?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://qconsulting.ca/fo3/ModConfig5.0.xsd">
  <moduleName>Artifact Disenchanting</moduleName>
  <installSteps>
    <installStep name="Options">
      <optionalFileGroups order="Explicit">
        <group name="Options" type="SelectAny">
          <plugins>
            <plugin name="Artifact Disenchanting">
              <description>
                <![CDATA[Skyrim - No DLC required]]>
              </description>
              <image path="fomod\images\basic.jpg"/>
              <files>
                <folder source="fomod\data\Artifact Disenchanting.esp" destination=""/>
              </files>
              <typeDescriptor>
                <type name="Optional"/>
              </typeDescriptor>
            </plugin>
            <plugin name="Artifact Disenchanting - Dawnguard">
              <description>
                <![CDATA[Add-on for the Dawnguard expansion.]]>
              </description>
              <image path="fomod\images\dawnguard.jpg"/>
              <files>
                <folder source="fomod\data\Artifact Disenchanting - Dawnguard.esp" destination=""/>
              </files>
              <typeDescriptor>
                <type name="Optional"/>
              </typeDescriptor>
            </plugin>
            <plugin name="Artifact Disenchanting - Dragonborn">
              <description>
                <![CDATA[Add-on for the Dragonborn expansion.]]>
              </description>
              <image path="fomod\images\Dragonborn.jpg"/>
              <files>
                <folder source="fomod\data\Artifact Disenchanting - Dragonborn.esp" destination=""/>
              </files>
			  <typeDescriptor>
                <type name="Optional"/>
			  </typeDescriptor>
            </plugin>
            <plugin name="Artifact Disenchanting - Remove Restrictions">
              <description>
                <![CDATA[Add-on to remove the restrictions to armor enchantments. Place any normal apparel enchantment on any type of apparel.]]>
              </description>
              <image path="fomod\images\remove.jpg"/>
              <files>
                <folder source="fomod\data\FormsEdit.esp" destination=""/>
              </files>
              <typeDescriptor>
                <type name="Optional"/>
              </typeDescriptor>
            </plugin>
          </plugins>
        </group>  
      </optionalFileGroups>
    </installStep>
  </installSteps>
</config>

 

 

 

Maybe you guys can spot something I'm missing or forgetting.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...