PDA

View Full Version : Adding Module to New Ruleset



zenile
July 9th, 2010, 05:38
Hi everyone. So I'm a complete noob when it comes to all this, but trying to roll up my sleeves and learn this thing :). So I'm trying too add a module to an existing ruleset by modifying the definition .xml file. Here is the script I'm using:

<?xml version="1.0" encoding="iso-8859-1" ?>
- <root>
<name>3.5E Monsters</name>
<author>Fantasy Grounds 3.5E Essentials</author>
<ruleset>foundation</ruleset>
<ruleset>SWSE</ruleset>
</root>

However, after modifying the xml file, this module now doesn't show up in either the foundation or SWSE ruleset.

Anyone have an idea on what I'm doing wrong here.

ddavison
July 9th, 2010, 07:32
While it would be nice to allow for multiples there, it only accepts a single ruleset. You can add "Any" though and it will open it up for any ruleset. Alternatively, each ruleset has an allowable list of compatible rulesets for sharing modules. Look in base.xml for something like this:



<importinfo>
<acceptfrom ruleset="SWSE" />
<acceptfrom ruleset="foundation" />
</importinfo>

zenile
July 9th, 2010, 13:20
Great info, thanks.