• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Adding New Source Category?

Steev42

Well-known member
This may be a generic HeroLab question, but I'm coming from a standpoint of adding things in Pathfinder.

I'd like to create a new heading for my sources. Something along the lines of (say) "User Content" or "Pathfinder Society" that I can then put other sources underneath.

I had assumed that if I created one source (I left the Parent Source blank), and created a second source with the Source Unique ID of the first as the Parent Source, this would do what I wanted. However, whenever I tried to use the child, I would get an error indicating it couldn't find the unique ID of the parent.

Anyone have anything that could help me?
 
You will need to make a *.1st for example: PFRPG_ModernSources.1st, it can be made in notepad.
The code, (the txt made in notepad), will be something like:


<?xml version="1.0" encoding="ISO-8859-1"?>
<document signature="Hero Lab Structure">

<source
id="ModPath"
name="MSRD Pathfinder"
selectable="no"
sortorder="0"
description="Various options for applying the MSRD rule setting to the Pathfinder Roleplaying Game">
</source>

<source
id="Modern"
name="MSRD Core"
parent="ModPath"
description="Various options for applying MSRD Core rules to the Pathfinder Roleplaying Game">
</source>


<source
id="ModGear"
name="MSRD Gear"
parent="ModPath"
description="21st century gear for the MSRD Core">
</source>


<source
id="ModMon"
name="MSRD Menace Manual"
parent="ModPath"
description="Various options for applying MSRD Menace Manual to the Pathfinder Roleplaying Game">
</source>

<source
id="ModArc"
name="MSRD Arcana"
parent="ModPath"
description="Various options for applying MSRD Arcana to the Pathfinder Roleplaying Game">
</source>

<source
id="Future"
name="MSRD Future"
parent="ModPath"
description="Various options for applying MSRD Future to the Pathfinder Roleplaying Game">
</source>





</document>
 
Back
Top