• 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

por file XML

Minous

Well-known member
I am using a custom script to parse the .por file for data reporting. I pull Journal titles (I use the scenario name as the title) to track what I have played and I also use it for listing characters. Is there a place that lists each characters level. or will I need to hack together character tag's summary field in the index.xml to calculate that?
 
In the statblocks_xml the classes/levels are listed...

eg.

Code:
<classes level="5" summary="ranger 3/rogue 2" summaryabbr="Rgr 3/Rog 2">
	<class name="Ranger" level="3" spells="Memorized" casterlevel="2" concentrationcheck="+0" overcomespellresistance="+2" basespelldc="8" castersource="Divine"/>
	<class name="Rogue" level="2" spells="" casterlevel="0" concentrationcheck="-3" overcomespellresistance="+0" basespelldc="7" castersource=""/>
</classes>
 
In the statblocks_xml the classes/levels are listed...

eg.

Code:
<classes level="5" summary="ranger 3/rogue 2" summaryabbr="Rgr 3/Rog 2">
	<class name="Ranger" level="3" spells="Memorized" casterlevel="2" concentrationcheck="+0" overcomespellresistance="+2" basespelldc="8" castersource="Divine"/>
	<class name="Rogue" level="2" spells="" casterlevel="0" concentrationcheck="-3" overcomespellresistance="+0" basespelldc="7" castersource=""/>
</classes>
Thanks for the info, looks like my .por was missing the statblock directories which caused them to no be saved, added the directories and everything showed up.
 
Back
Top