• 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

Pathfinder Community Packs

I get that problem about the Path of War tags all the time. In order to fix it, I move the following lines out of COM_3PPPack_PathOfWarEx - Tags.1st:

Code:
  <!--The DarkFocus tag group is used to denote disciplines that have been selected by the Harbinger's Dark Focus ability-->
  <group id="DarkFocus" name="Dark Focus Disc." 
    inherit="Discipline">
  </group>
  
  <!--PoWFreeMan indicates that maneuvers from the tagged discipline can be readied without counting against the normal maneuver count (such as with the Harbinger capstone ability)-->
  <group id="PoWFreeMan" name="Free Maneuvers" 
    inherit="Discipline">
  </group>

And copy them into COM_3PPPack_PathOfWar - Tags.1st. (note the absence of Ex) I don't know why this works, but I know it does.
 
I get that problem about the Path of War tags all the time. In order to fix it, I move the following lines out of COM_3PPPack_PathOfWarEx - Tags.1st:

Code:
  <!--The DarkFocus tag group is used to denote disciplines that have been selected by the Harbinger's Dark Focus ability-->
  <group id="DarkFocus" name="Dark Focus Disc." 
    inherit="Discipline">
  </group>
  
  <!--PoWFreeMan indicates that maneuvers from the tagged discipline can be readied without counting against the normal maneuver count (such as with the Harbinger capstone ability)-->
  <group id="PoWFreeMan" name="Free Maneuvers" 
    inherit="Discipline">
  </group>

And copy them into COM_3PPPack_PathOfWar - Tags.1st. (note the absence of Ex) I don't know why this works, but I know it does.
What kind of computer are you on? Windows Mac? Version? Do you have another language setup?

It should be loading PathOfWar FIRST as PathOfWarEx comes AFTER in standard ASCII sorts.
 
I'm on ubuntu linux and I'm running Hero Lab through WINE. If file listing order is an issue, here is the list of my Path of war-related files in the order they appear on my computer when sorting by name:

Code:
COM_3PPPack_PathOfWar - Adjustments.user
COM_3PPPack_PathOfWar - Archetypes.user
COM_3PPPack_PathOfWar - Classes.user
COM_3PPPack_PathOfWar - Components.str
COM_3PPPack_PathOfWar - Editor.dat
COM_3PPPack_PathOfWar - Equipment.user
COM_3PPPack_PathOfWarEx - Adjustments.user
COM_3PPPack_PathOfWarEx - Classes.user
COM_3PPPack_PathOfWarEx - Feats.user
COM_3PPPack_PathOfWarEx - Helper Things.user
COM_3PPPack_PathOfWarEx - Maneuvers.user
COM_3PPPack_PathOfWarEx - Tags.1st
COM_3PPPack_PathOfWar - Feats.user
COM_3PPPack_PathOfWar - Helper Things.user
COM_3PPPack_PathOfWar - Manuevers.user
COM_3PPPack_PathOfWar - Martial Traditions.user
COM_3PPPack_PathOfWar - Procedures.user
COM_3PPPack_PathOfWar - Skills.user
COM_3PPPack_PathOfWar - Tags.1st

After doing some searching, it seems that ubuntu linux ignores spaces and non-alpha-numeric characters when sorting files by name, so all Ubuntu sees is this:

Code:
COM_3PPPack_PathOfWarAdjustments.user
COM_3PPPack_PathOfWarArchetypes.user
COM_3PPPack_PathOfWarClasses.user
COM_3PPPack_PathOfWarComponents.str
COM_3PPPack_PathOfWarEditor.dat
COM_3PPPack_PathOfWarEquipment.user
COM_3PPPack_PathOfWarExAdjustments.user
COM_3PPPack_PathOfWarExClasses.user
COM_3PPPack_PathOfWarExFeats.user
COM_3PPPack_PathOfWarExHelperThings.user
COM_3PPPack_PathOfWarExManeuvers.user
COM_3PPPack_PathOfWarExTags.1st
COM_3PPPack_PathOfWarFeats.user
COM_3PPPack_PathOfWarHelperThings.user
COM_3PPPack_PathOfWarManuevers.user
COM_3PPPack_PathOfWarMartialTraditions.user
COM_3PPPack_PathOfWarProcedures.user
COM_3PPPack_PathOfWarSkills.user
COM_3PPPack_PathOfWarTags.1st

That's why it puts the Path of War "Ex" files after "COM_3PPPack_PathOfWar - Equipment.user" and before "COM_3PPPack_PathOfWar - Feats.user". And that different sort behavior messes up loading these files on ubuntu linux.

Wow. So obscure.
 
Last edited:
I'm on linux and I'm running Hero Lab through WINE. If file listing order is an issue, here is the list of my Path of war-related files in the order they appear on my computer when sorting by name:

Code:
COM_3PPPack_PathOfWar - Adjustments.user
COM_3PPPack_PathOfWar - Archetypes.user
COM_3PPPack_PathOfWar - Classes.user
COM_3PPPack_PathOfWar - Components.str
COM_3PPPack_PathOfWar - Editor.dat
COM_3PPPack_PathOfWar - Equipment.user
COM_3PPPack_PathOfWarEx - Adjustments.user
COM_3PPPack_PathOfWarEx - Classes.user
COM_3PPPack_PathOfWarEx - Feats.user
COM_3PPPack_PathOfWarEx - Helper Things.user
COM_3PPPack_PathOfWarEx - Maneuvers.user
COM_3PPPack_PathOfWarEx - Tags.1st
COM_3PPPack_PathOfWar - Feats.user
COM_3PPPack_PathOfWar - Helper Things.user
COM_3PPPack_PathOfWar - Manuevers.user
COM_3PPPack_PathOfWar - Martial Traditions.user
COM_3PPPack_PathOfWar - Procedures.user
COM_3PPPack_PathOfWar - Skills.user
COM_3PPPack_PathOfWar - Tags.1st

This looks like WINE might be presenting the 8.3 version of each name (remember DOS?) rather than the full filename! (or even that WINE is removing the " - " from the filename.)

This would need to be raised as a bug with the WINE team.
 
I'm on ubuntu linux and I'm running Hero Lab through WINE. If file listing order is an issue, here is the list of my Path of war-related files in the order they appear on my computer when sorting by name:

Code:
COM_3PPPack_PathOfWar - Adjustments.user
COM_3PPPack_PathOfWar - Archetypes.user
COM_3PPPack_PathOfWar - Classes.user
COM_3PPPack_PathOfWar - Components.str
COM_3PPPack_PathOfWar - Editor.dat
COM_3PPPack_PathOfWar - Equipment.user
COM_3PPPack_PathOfWarEx - Adjustments.user
COM_3PPPack_PathOfWarEx - Classes.user
COM_3PPPack_PathOfWarEx - Feats.user
COM_3PPPack_PathOfWarEx - Helper Things.user
COM_3PPPack_PathOfWarEx - Maneuvers.user
COM_3PPPack_PathOfWarEx - Tags.1st
COM_3PPPack_PathOfWar - Feats.user
COM_3PPPack_PathOfWar - Helper Things.user
COM_3PPPack_PathOfWar - Manuevers.user
COM_3PPPack_PathOfWar - Martial Traditions.user
COM_3PPPack_PathOfWar - Procedures.user
COM_3PPPack_PathOfWar - Skills.user
COM_3PPPack_PathOfWar - Tags.1st

After doing some searching, it seems that ubuntu linux ignores spaces and non-alpha-numeric characters when sorting files by name, so all Ubuntu sees is this:

Code:
COM_3PPPack_PathOfWarAdjustments.user
COM_3PPPack_PathOfWarArchetypes.user
COM_3PPPack_PathOfWarClasses.user
COM_3PPPack_PathOfWarComponents.str
COM_3PPPack_PathOfWarEditor.dat
COM_3PPPack_PathOfWarEquipment.user
COM_3PPPack_PathOfWarExAdjustments.user
COM_3PPPack_PathOfWarExClasses.user
COM_3PPPack_PathOfWarExFeats.user
COM_3PPPack_PathOfWarExHelperThings.user
COM_3PPPack_PathOfWarExManeuvers.user
COM_3PPPack_PathOfWarExTags.1st
COM_3PPPack_PathOfWarFeats.user
COM_3PPPack_PathOfWarHelperThings.user
COM_3PPPack_PathOfWarManuevers.user
COM_3PPPack_PathOfWarMartialTraditions.user
COM_3PPPack_PathOfWarProcedures.user
COM_3PPPack_PathOfWarSkills.user
COM_3PPPack_PathOfWarTags.1st

That's why it puts the Path of War "Ex" files after "COM_3PPPack_PathOfWar - Equipment.user" and before "COM_3PPPack_PathOfWar - Feats.user". And that different sort behavior messes up loading these files on ubuntu linux.

Wow. So obscure.
Well that would be the cause then. I have already taken steps to prevent this "load" order issue in the next release this month. So going forward you shouldn't have to make file changes after you load. I forgot about those running on Linux and was only thinking of files running on Windows/Mac.

Will keep this in mind for future additions. :)
 
I'm getting the following error with the 'Blue' race in Ultimate Psionics when trying to add the alternate Racial trait of 'Goblinoid Camoflage'.

Tag group 'AbReplace' does not possess tag 'raBlueRepl' that is copied from group 'RaReplace'
Location: 'eval' script for Component 'CanRepRaAb' (Eval Script 'Forward RaReplace') near line 21
 
doing it with the Kinslayer and Psionic Prodigy as well.
it looks like it is referencing a 'Blue' version of the Repletion ability...but i can't find that anywhere so either its been removed or hiding somewhere i can't find...

edit: looks like the Blue race is pointing to the Elan Repletion...maybe there were separate ones before...
 
Last edited:
Hey Shadow, it looks like the new 11.7 official package has a clash with the Community tags... I am sure you're planning to prep a new Community release anyway, but here's what I'm seeing:

HeroLab said:
The data files could not be loaded due to errors. Hero Lab will now attempt to load them in recovery mode. Once loaded, you can access the editor as normal to correct any errors.

The following errors occurred:

File: COM_BasicPack - Tags.1st (line 86) - Tag Group - Duplicate record encountered ('DragonAge')
 
Hey Shadow, it looks like the new 11.7 official package has a clash with the Community tags... I am sure you're planning to prep a new Community release anyway, but here's what I'm seeing:
Thanks. Finally just got onto the fourms and see the new update. It's way too late now to get all the Packs created/Packaged up tonight. Sorry it will have to wait until tomorrow night. :(
 
Thanks. Finally just got onto the fourms and see the new update. It's way too late now to get all the Packs created/Packaged up tonight. Sorry it will have to wait until tomorrow night. :(

Not a big issue for me, and I figured that by posting what I saw at least some people would be warned and wait until you have a chance to prep an update.

While I am at it, I commented out that tag group in the file (as I expect it would only be needed if I am using the Community Bestiaries.. and I am not. That led to another:

HeroLab said:
File: COM_BasicPack_ShadowChemosh - Equipment.user (line 233) - Thing - Duplicate record encountered ('ioGoodberr')

I also commented out that, and was able to load my working portfolio without further errors.
 
Last edited:
I received an duplicate error regarding DragonAge, which I'm assuming is caused by the "new" tag LW is now using in their Bestiaries.
 
I received an duplicate error regarding DragonAge, which I'm assuming is caused by the "new" tag LW is now using in their Bestiaries.

That and Goodberry from the ShadowChemosh's Equipment file, if you comment out the relavant xml code using notepad or notepad ++ the files work fine. I think they are working on the issue.
 
I tried that

I tried commenting out the problem code but once it got to the point of modifying more than four files I gave up the will to keep going
 
The following Packs have been updated. For details click the links:

Highlights:
1) Fixed load error with Pathfinder v11.7
-File: COM_BasicPack - Tags.1st (line 86) - Tag Group - Duplicate record encountered ('DragonAge')
-File: COM_BasicPack_ShadowChemosh - Equipment.user (line 233) - Thing - Duplicate record encountered ('ioGoodberr')

2) More Path of War Expanded archetypes and maneuvers added! :D

3) "Master of Many Styles" archetype for the Unchained Monk added.

4) More feats and equipment from Races of Eberron added!

5) Ultimate Psionics - New feats and archetypes added!
 
The following errors occurred:

File: COM_GMPack_Frumple - Adjustments.user (line 283) - Thing - Duplicate record encountered ('pJump')


This file is dated 2/25/15. Is it part of the packs or is it something needing removed :confused:
 
The following errors occurred:

File: COM_GMPack_Frumple - Adjustments.user (line 283) - Thing - Duplicate record encountered ('pJump')


This file is dated 2/25/15. Is it part of the packs or is it something needing removed :confused:

a workaround to use untill Frumple can fix it

is to re name it jump + 10 and to make the id p jump10 don't forget to test and save it!
 
Back
Top